summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/cert/CertResource.java
Commit message (Collapse)AuthorAgeFilesLines
* Added authentication method validation.ticket-477-7Endi Sukma Dewata2013-02-181-0/+5
| | | | | | | | | | | | | | | A new mechanism has been added to specify the authentication methods that can be used to invoke the REST methods. The AuthMethodMapping annotation maps each REST method to a list of allowed authentication methods. When a client calls a REST method, the AuthMethodInterceptor will intercept the call and verify that the client uses an allowed authentication method. Most REST methods that require authentication have been configured to require client certificate authentication. Authentication using username and password will only be used to get the installation token from security domain. Ticket #477
* Added nonce validation for certificate revocation.Endi Sukma Dewata2013-01-151-0/+6
| | | | | | | The certificate REST service has been modified to validate nonce when revoking a certificate. Ticket #213
* Added ACLInterceptor.Endi Sukma Dewata2012-11-081-0/+4
| | | | | | | | | Previously ACL checking was done in PKIRealm by matching the URL. This code has been replaced by ACLInterceptor which will intercept RESTEasy method invocations. This allows more precise mapping of REST methods to ACL entries in acl.ldif. Ticket #287
* Reorganized REST common classes.Endi Sukma Dewata2012-08-151-0/+60
The common classes used by REST client and services have been moved into the com.netscape.certsrv.<component> packages. Ticket #215