Package nl.b3p.commons.security
Class XmlSecurityDatabase
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- nl.b3p.commons.security.XmlSecurityDatabase
-
- All Implemented Interfaces:
Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class XmlSecurityDatabase extends javax.servlet.http.HttpServlet
- Version:
- $Revision: 1.1 $ $Date: 2004/04/29 16:47:27 $
- Author:
- Chris van Lith
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XmlSecurityDatabase()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
booleanAuthenticate(String username, String password)
void
destroy()
Destroys the servlet.protected void
doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Handles the HTTPGET
method.protected void
doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Handles the HTTPPOST
method.static WebappUsers
getSecurityDatabase()
Return the jndi path for this database.String
getServletInfo()
Returns a short description of the servlet.void
init(javax.servlet.ServletConfig config)
Initializes the servlet.static boolean
isInitialized()
static boolean
isUserInRole(String username, String role)
protected void
processRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Processes requests for both HTTPGET
andPOST
methods.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
-
-
-
Method Detail
-
init
public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletException
Initializes the servlet.- Specified by:
init
in interfacejavax.servlet.Servlet
- Overrides:
init
in classjavax.servlet.GenericServlet
- Throws:
javax.servlet.ServletException
-
destroy
public void destroy()
Destroys the servlet.- Specified by:
destroy
in interfacejavax.servlet.Servlet
- Overrides:
destroy
in classjavax.servlet.GenericServlet
-
processRequest
protected void processRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
Processes requests for both HTTPGET
andPOST
methods.- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
javax.servlet.ServletException
IOException
-
doGet
protected void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
Handles the HTTPGET
method.- Overrides:
doGet
in classjavax.servlet.http.HttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
javax.servlet.ServletException
IOException
-
doPost
protected void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
Handles the HTTPPOST
method.- Overrides:
doPost
in classjavax.servlet.http.HttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
javax.servlet.ServletException
IOException
-
getSecurityDatabase
public static WebappUsers getSecurityDatabase()
Return the jndi path for this database.- Returns:
-
isInitialized
public static boolean isInitialized()
-
getServletInfo
public String getServletInfo()
Returns a short description of the servlet.- Specified by:
getServletInfo
in interfacejavax.servlet.Servlet
- Overrides:
getServletInfo
in classjavax.servlet.GenericServlet
-
-