/vt-ldap/branches/vt-ldap-3/src/main/java/edu/vt/middleware/ldap/servlets/CommonServlet.java

http://vt-middleware.googlecode.com/ · Java · 108 lines · 67 code · 11 blank · 30 comment · 12 complexity · 010a440ca9d1246889674f6f6dac666b MD5 · raw file

  1. /*
  2. $Id: CommonServlet.java 1330 2010-05-23 22:10:53Z dfisher $
  3. Copyright (C) 2003-2010 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1330 $
  9. Updated: $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
  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: 1330 $ $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
  24. */
  25. public class CommonServlet extends HttpServlet
  26. {
  27. /** serial version uid. */
  28. private static final long serialVersionUID = -2580419817969949661L;
  29. /** Log for this class. */
  30. protected final Log logger = LogFactory.getLog(this.getClass());
  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 (this.logger.isDebugEnabled()) {
  50. this.logger.debug(
  51. ServletConstants.SESSION_MANAGER + " = " + sessionManagerClass);
  52. }
  53. try {
  54. this.sessionManager = (SessionManager) Class.forName(sessionManagerClass)
  55. .newInstance();
  56. } catch (ClassNotFoundException e) {
  57. if (this.logger.isErrorEnabled()) {
  58. this.logger.error("Could not find class " + sessionManagerClass, e);
  59. }
  60. throw new ServletException(e);
  61. } catch (InstantiationException e) {
  62. if (this.logger.isErrorEnabled()) {
  63. this.logger.error(
  64. "Could not instantiate class " + sessionManagerClass,
  65. e);
  66. }
  67. throw new ServletException(e);
  68. } catch (IllegalAccessException e) {
  69. if (this.logger.isErrorEnabled()) {
  70. this.logger.error("Could not access class " + sessionManagerClass, e);
  71. }
  72. throw new ServletException(e);
  73. }
  74. String sessionId = getInitParameter(ServletConstants.SESSION_ID);
  75. if (sessionId == null) {
  76. sessionId = ServletConstants.DEFAULT_SESSION_ID;
  77. }
  78. if (this.logger.isDebugEnabled()) {
  79. this.logger.debug(ServletConstants.SESSION_ID + " = " + sessionId);
  80. }
  81. this.sessionManager.setSessionId(sessionId);
  82. String invalidateSession = getInitParameter(
  83. ServletConstants.INVALIDATE_SESSION);
  84. if (invalidateSession == null) {
  85. invalidateSession = ServletConstants.DEFAULT_INVALIDATE_SESSION;
  86. }
  87. if (this.logger.isDebugEnabled()) {
  88. this.logger.debug(
  89. ServletConstants.INVALIDATE_SESSION + " = " + invalidateSession);
  90. }
  91. this.sessionManager.setInvalidateSession(
  92. Boolean.valueOf(invalidateSession).booleanValue());
  93. }
  94. }