summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cms/servlet/cert/CertProcessor.java
Commit message (Collapse)AuthorAgeFilesLines
* Renamed escapeDN() into escapeRDNValue().Endi Sukma Dewata2012-09-271-1/+1
| | | | | | | The escapeDN() has been renamed into escapeRDNValue() for better clarity. Ticket #193
* Removed duplicate DN escaping methods.Endi Sukma Dewata2012-09-191-2/+2
| | | | | | | | The duplicate methods to escape DN value have been removed. The codes that used the duplicate methods have been modified to use LDAPUtil.escapeDN(). Ticket #193
* Reorganized REST common classes.Endi Sukma Dewata2012-08-151-2/+2
| | | | | | | The common classes used by REST client and services have been moved into the com.netscape.certsrv.<component> packages. Ticket #215
* Cleaned up REST common class names.Endi Sukma Dewata2012-08-151-3/+3
| | | | | | | The REST common classes have been renamed for better clarity and consistency. Ticket #259
* Adding restful interface to create certificate requests and issue certificates.Ade Lee2012-07-031-0/+351
Refactored ProfileSubmitServlet to make the flow clearer. Both the legacy servlets and the new RESTful servlets use common ProfileProcessor objects that contain the main business logic, so that the amount of duplicated code is minimized. Refactored ProfileProcessServlet to use the new common classes. Addressed review comments. Removed an unneeded class and reverted some unneeded jaxb annotations. Added factory methods.