Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 346357 - getOcspResponderURL setEnableOCSP case difference
Summary: getOcspResponderURL setEnableOCSP case difference
Status: CLOSED WONTFIX
Alias: None
Product: Jetty
Classification: RT
Component: server (show other bugs)
Version: 7.4.1   Edit
Hardware: All All
: P3 minor (vote)
Target Milestone: 7.2.x   Edit
Assignee: Michael Gorovoy CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-05-18 20:50 EDT by Greg Wilkins CLA
Modified: 2011-05-23 21:20 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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