org.ejbca.ui.web.pub |
|
Java Source File Name | Type | Comment |
AutoEnrollServlet.java | Class | Parses a posted request and returns a correct certificate depending on the type. |
CardCertReqServlet.java | Class | Servlet used to install a private key with a corresponding certificate in a browser. |
CertDistServlet.java | Class | Servlet used to distribute certificates and CRLs.
The servlet is called with method GET or POST and syntax
command=<command> .
The follwing commands are supported:
- crl - gets the latest CRL.
- lastcert - gets latest certificate of a user, takes argument 'subject='.
- listcerts - lists all certificates of a user, takes argument 'subject='.
- revoked - checks if a certificate is revoked, takes arguments 'subject=&serno='.
- cacert - returns ca certificate in PEM-format, takes argument 'issuer=&level='
- nscacert - returns ca certificate for Netscape/Mozilla, same args as above
- iecacert - returns ca certificate for Internet Explorer, same args as above
cacert, nscacert and iecacert also takes optional parameter level=, where the level is
which ca certificate in a hierachy should be returned. |
CertReqServlet.java | Class | Servlet used to install a private key with a corresponding certificate in a browser. |
DemoCertReqServlet.java | Class | This is a servlet that is used for creating a user into EJBCA and
retrieving her certificate. |
HealthCheckServlet.java | Class | Servlet used to check the health of an EJBCA instance and can be used
to build a cluster using a loadbalancer. |
ServletDebug.java | Class | |
ServletUtils.java | Class | A class containing some helpful functions used in more than one servlet, avoiding code duplication. |
TestAutoEnrollServlet.java | Class | |