Class WebPBEConfigServlet
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.jasypt.web.pbeconfig.WebPBEConfigServlet
- All Implemented Interfaces:
Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig
public final class WebPBEConfigServlet
extends javax.servlet.http.HttpServlet
Servlet for web PBE config processing.
This servlet's URL should be called by the webapp administrator at deploy
time, for setting the passwords of all the PBE encryptors which have
been previously assigned a WebPBEConfig configuration object.
If web PBE configuration has not been done yet, it will show the user a form containing two inputs for each encryptor: the validation word and the password (retyped).
- The validation word must be input to the value set on the
WebPBEConfigobject with its setValidationWord(...) method. This will ensure that only an authorized person will set the encryption passwords. .
- The password (retyped) must be input to the value which is desired to be the encryption password for each specific encryptor.
An example web.xml fragment:
<servlet>
<servlet-name>webPBEConfigServlet</servlet-name>
<servlet-class>
org.jasypt.web.pbeconfig.WebPBEConfigServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>webPBEConfigServlet</servlet-name>
<url-pattern>/webPBEConfig.do</url-pattern>
</servlet-mapping>
If this servlet's context is set a logger, it will output messages for both successful and failed attempts to set passwords, including date, time and originating IP address.
- Since:
- 1.3
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) protected voiddoPost(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) private voidexecute(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) private voidwriteResponse(String html, javax.servlet.http.HttpServletResponse response) Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, serviceMethods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
WebPBEConfigServlet
public WebPBEConfigServlet()
-
-
Method Details
-
doGet
protected void doGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) throws javax.servlet.ServletException, IOException - Overrides:
doGetin classjavax.servlet.http.HttpServlet- Throws:
javax.servlet.ServletExceptionIOException
-
doPost
protected void doPost(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) throws javax.servlet.ServletException, IOException - Overrides:
doPostin classjavax.servlet.http.HttpServlet- Throws:
javax.servlet.ServletExceptionIOException
-
execute
private void execute(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) throws javax.servlet.ServletException, IOException - Throws:
javax.servlet.ServletExceptionIOException
-
writeResponse
private void writeResponse(String html, javax.servlet.http.HttpServletResponse response) throws IOException - Throws:
IOException
-