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

http://vt-middleware.googlecode.com/ · Java · 108 lines · 32 code · 23 blank · 53 comment · 0 complexity · 885ac96084be02bffc93d30950fd0a80 MD5 · raw file

  1. /*
  2. $Id: ServletConstants.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. /**
  13. * <code>ServletConstants</code> contains all the constants needed by the ldap
  14. * servlet package.
  15. *
  16. * @author Middleware Services
  17. * @version $Revision: 1330 $ $Date: 2010-05-24 00:10:53 +0200 (Mon, 24 May 2010) $
  18. */
  19. public final class ServletConstants
  20. {
  21. /** Domain to look for properties in, value is {@value}. */
  22. public static final String PROPERTIES_DOMAIN =
  23. "edu.vt.middleware.ldap.servlets.";
  24. /** LDAP initialization properties file, value is {@value}. */
  25. public static final String PROPERTIES_FILE = PROPERTIES_DOMAIN +
  26. "propertiesFile";
  27. /** LDAP pool initialization properties file, value is {@value}. */
  28. public static final String POOL_PROPERTIES_FILE = PROPERTIES_DOMAIN +
  29. "poolPropertiesFile";
  30. /** Format of search output, value is {@value}. */
  31. public static final String OUTPUT_FORMAT = PROPERTIES_DOMAIN + "outputFormat";
  32. /** Default format of search output, value is {@value}. */
  33. public static final String DEFAULT_OUTPUT_FORMAT = "DSML";
  34. /** Type of pool used, value is {@value}. */
  35. public static final String POOL_TYPE = PROPERTIES_DOMAIN + "poolType";
  36. /** Type of ldap bean factory, value is {@value}. */
  37. public static final String BEAN_FACTORY = PROPERTIES_DOMAIN + "beanFactory";
  38. /**
  39. * Identifier to set in the session after valid authentication, value is
  40. * {@value}.
  41. */
  42. public static final String SESSION_ID = PROPERTIES_DOMAIN + "sessionId";
  43. /**
  44. * Default identifier to set in the session after valid authentication, value
  45. * is {@value}.
  46. */
  47. public static final String DEFAULT_SESSION_ID = "user";
  48. /** Whether to invalidate the user session at logout, value is {@value}. */
  49. public static final String INVALIDATE_SESSION = PROPERTIES_DOMAIN +
  50. "invalidateSession";
  51. /**
  52. * Default behavior for invalidating the user session at logout, value is
  53. * {@value}.
  54. */
  55. public static final String DEFAULT_INVALIDATE_SESSION = "true";
  56. /** URL of the page that collects user credentials, value is {@value}. */
  57. public static final String LOGIN_URL = PROPERTIES_DOMAIN + "loginUrl";
  58. /**
  59. * Default URL of the page that does collects user credentials, value is
  60. * {@value}.
  61. */
  62. public static final String DEFAULT_LOGIN_URL = "/";
  63. /** Error message to display if authentication fails, value is {@value}. */
  64. public static final String ERROR_MSG = PROPERTIES_DOMAIN + "errorMsg";
  65. /** Class used to initialize http sessions. */
  66. public static final String SESSION_MANAGER = PROPERTIES_DOMAIN +
  67. "sessionManager";
  68. /** Default session initializer, value is {@value}. */
  69. public static final String DEFAULT_SESSION_MANAGER =
  70. "edu.vt.middleware.ldap.servlets.session.DefaultSessionManager";
  71. /** Default error message, value is {@value}. */
  72. public static final String DEFAULT_ERROR_MSG =
  73. "Could not authenticate or authorize user";
  74. /** HTTP parameter used to transmit the user identifier, value is {@value}. */
  75. public static final String USER_PARAM = "user";
  76. /** HTTP parameter used to transmit the user credential, value is {@value}. */
  77. public static final String CREDENTIAL_PARAM = "credential";
  78. /** HTTP parameter used to transmit the redirect url, value is {@value}. */
  79. public static final String URL_PARAM = "url";
  80. /** Default constructor. */
  81. private ServletConstants() {}
  82. }