/vt-ldap/tags/vt-ldap-3.0/src/main/java/edu/vt/middleware/ldap/servlets/CommonServlet.java

http://vt-middleware.googlecode.com/ · Java · 105 lines · 64 code · 11 blank · 30 comment · 12 complexity · 8e5c4b7a1a6299a2ac5ed62a759907ac MD5 · raw file

  1. /*
  2. $Id: CommonServlet.java 269 2009-05-28 14:24:37Z dfisher $
  3. Copyright (C) 2003-2008 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 269 $
  9. Updated: $Date: 2009-05-28 16:24:37 +0200 (Thu, 28 May 2009) $
  10. */
  11. package edu.vt.middleware.ldap.servlets;
  12. import javax.servlet.ServletConfig;
  13. import javax.servlet.ServletException;
  14. import javax.servlet.http.HttpServlet;
  15. import edu.vt.middleware.ldap.servlets.session.SessionManager;
  16. import org.apache.commons.logging.Log;
  17. import org.apache.commons.logging.LogFactory;
  18. /**
  19. * <code>CommonServlet</code> contains common code that each servlet uses to
  20. * initialize itself.
  21. *
  22. * @author Middleware Services
  23. * @version $Revision: 269 $ $Date: 2009-05-28 16:24:37 +0200 (Thu, 28 May 2009) $
  24. */
  25. public class CommonServlet extends HttpServlet
  26. {
  27. /** serial version uid. */
  28. private static final long serialVersionUID = -9145103488979474729L;
  29. /** Log for this class. */
  30. private static final Log LOG = LogFactory.getLog(CommonServlet.class);
  31. /** Used to manage a session after login and logout. */
  32. protected SessionManager sessionManager;
  33. /**
  34. * Initialize this servlet.
  35. *
  36. * @param config <code>ServletConfig</code>
  37. *
  38. * @throws ServletException if an error occurs
  39. */
  40. public void init(final ServletConfig config)
  41. throws ServletException
  42. {
  43. super.init(config);
  44. String sessionManagerClass = getInitParameter(
  45. ServletConstants.SESSION_MANAGER);
  46. if (sessionManagerClass == null) {
  47. sessionManagerClass = ServletConstants.DEFAULT_SESSION_MANAGER;
  48. }
  49. if (LOG.isDebugEnabled()) {
  50. LOG.debug(ServletConstants.SESSION_MANAGER + " = " + sessionManagerClass);
  51. }
  52. try {
  53. this.sessionManager = (SessionManager) Class.forName(sessionManagerClass)
  54. .newInstance();
  55. } catch (ClassNotFoundException e) {
  56. if (LOG.isErrorEnabled()) {
  57. LOG.error("Could not find class " + sessionManagerClass, e);
  58. }
  59. throw new ServletException(e);
  60. } catch (InstantiationException e) {
  61. if (LOG.isErrorEnabled()) {
  62. LOG.error("Could not instantiate class " + sessionManagerClass, e);
  63. }
  64. throw new ServletException(e);
  65. } catch (IllegalAccessException e) {
  66. if (LOG.isErrorEnabled()) {
  67. LOG.error("Could not access class " + sessionManagerClass, e);
  68. }
  69. throw new ServletException(e);
  70. }
  71. String sessionId = getInitParameter(ServletConstants.SESSION_ID);
  72. if (sessionId == null) {
  73. sessionId = ServletConstants.DEFAULT_SESSION_ID;
  74. }
  75. if (LOG.isDebugEnabled()) {
  76. LOG.debug(ServletConstants.SESSION_ID + " = " + sessionId);
  77. }
  78. this.sessionManager.setSessionId(sessionId);
  79. String invalidateSession = getInitParameter(
  80. ServletConstants.INVALIDATE_SESSION);
  81. if (invalidateSession == null) {
  82. invalidateSession = ServletConstants.DEFAULT_INVALIDATE_SESSION;
  83. }
  84. if (LOG.isDebugEnabled()) {
  85. LOG.debug(
  86. ServletConstants.INVALIDATE_SESSION + " = " + invalidateSession);
  87. }
  88. this.sessionManager.setInvalidateSession(
  89. Boolean.valueOf(invalidateSession).booleanValue());
  90. }
  91. }