Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 346357

Summary: getOcspResponderURL setEnableOCSP case difference
Product: [RT] Jetty Reporter: Greg Wilkins <gregw>
Component: serverAssignee: Michael Gorovoy <mgorovoy>
Status: CLOSED WONTFIX QA Contact:
Severity: minor    
Priority: P3 CC: jetty-inbox
Version: 7.4.1   
Target Milestone: 7.2.x   
Hardware: All   
OS: All   
Whiteboard:

Description Greg Wilkins CLA 2011-05-18 20:50:16 EDT
The methods for OCSP are inconsistent with they handling of case.  Make it consistent with CRLDP case as well.
Comment 1 Michael Gorovoy CLA 2011-05-20 12:32:42 EDT
Will take care of this shortly.
Comment 2 Michael Gorovoy CLA 2011-05-23 21:20:59 EDT
It turns out that the methods of the CertificateValidator that are being called have the same inconsistency, as shown in the code snippet below.

...
validator.setEnableCRLDP(_enableCRLDP);            validator.setEnableOCSP(_enableOCSP);
validator.setOcspResponderURL(_ocspResponderURL);
...

Since the handling of case in the method names in Jetty code corresponds to the respective methods in the JDK, it has been decided not to change them.

-Michael