Commit af3a68fb authored by Sara Bertocco's avatar Sara Bertocco
Browse files

Fix to build Javadoc with java 1.8

parent c660cd72
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -130,6 +130,7 @@ public class ResetPasswordServlet extends HttpServlet
     * using input parameters read from it. Users who do augment
     * subject calls are constructed by taking the principals out of the ServletConfig 
     * input parameter.
     * </p>
     * 
     * <p>
     * The ResetPasswordServlet configuration in the web deployment descriptor file 
@@ -137,13 +138,14 @@ public class ResetPasswordServlet extends HttpServlet
     * <ul>
     * <li><code>ca.nrc.cadc.ac.server.web.ResetPasswordServlet.PrivilegedX500Principals</code>
     * is a list of trusted administrators DNs. It is a multi-line list with
     * line breaks between the trusted DNs and each DN eclosed in double quotes.
     * line breaks between the trusted DNs and each DN eclosed in double quotes.</li>
     * <li><code>ca.nrc.cadc.ac.server.web.ResetPasswordServlet.PrivilegedHttpPrincipals</code>
     * is a list of space separated userids (HTTP identities) corresponding 
     * to the previous DNs.
     * to the previous DNs.</li>
     * </ul>
     * The two lists of principal names must be of the same
     * length and correspond to each other in order.
     * </p>
     * 
     * @param config           The servlet configuration object.
     * @param response         The HTTP Response.
+4 −2
Original line number Diff line number Diff line
@@ -118,6 +118,7 @@ public class UserRequestServlet extends HttpServlet
     * using input parameters read from it. Users who do augment
     * subject calls are constructed by taking the principals out of the ServletConfig
     * input parameter.
     * </p>
     * 
     * <p>
     * The UserRequestServlet in the web deployment descriptor file 
@@ -125,13 +126,14 @@ public class UserRequestServlet extends HttpServlet
     * <ul>
     * <li><code>ca.nrc.cadc.ac.server.web.UserRequestServlet.PrivilegedX500Principals</code>
     * is a list of trusted administrators DNs. It is a multi-line list with
     * line breaks between the trusted DNs and each DN eclosed in double quotes.
     * line breaks between the trusted DNs and each DN eclosed in double quotes.</li>
     * <li><code>ca.nrc.cadc.ac.server.web.UserRequestServlet.PrivilegedHttpPrincipals</code>
     * is a list of space separated userids (HTTP identities) corresponding 
     * to the previous DNs.
     * to the previous DNs.</li>
     * </ul>
     * The two lists of principal names must be of the same
     * length and correspond to each other in order.
     * </p>
     * 
     * @param config           The servlet configuration object.
     * @param response         The HTTP Response.
+31 −1
Original line number Diff line number Diff line
@@ -110,6 +110,36 @@ public class UserServlet extends HttpServlet

    private UserPersistence userPersistence;
    
    /**
     * Servlet initialization method.
     * 
     * <p>
     * Receives the servlet configuration object and initializes UserPersistence 
     * using input parameters read from it. Users who do augment
     * subject calls are constructed by taking the principals out of the ServletConfig
     * input parameter.
     * </p>
     * 
     * <p>
     * The UserServlet configuration in the web deployment descriptor file 
     * <code>web.xml</code> must have two input parameters:
     * <ul>
     * <li><code>ca.nrc.cadc.ac.server.web.UserServlet.PrivilegedX500Principals</code>
     * is a list of trusted administrators DNs. It is a multi-line list with
     * line breaks between the trusted DNs and each DN eclosed in double quotes.</li>
     * <li><code>ca.nrc.cadc.ac.server.web.UserServlet.PrivilegedHttpPrincipals</code>
     * is a list of space separated userids (HTTP identities) corresponding 
     * to the previous DNs.</li>
     * </ul>
     * The two lists of principal names must be of the same
     * length and correspond to each other in order.
     * </p>
     * 
     * @param config           The servlet configuration object.
     * @param response         The HTTP Response.
     * 
     * @throws javax.servlet.ServletException   For general Servlet exceptions.
     */
    @Override
    public void init(ServletConfig config) throws ServletException
    {