Class JettyConstants


  • public class JettyConstants
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String JETTY_QUERY_STRING
      Metadata key that contains the query string that was used to post data to a Jetty instance : "jettyQueryString"
      static java.lang.String JETTY_URI
      Metadata key that contains the URI that was used to post data to a Jetty instance : "jettyURI"
      static java.lang.String JETTY_URL
      Metadata key that contains the URL that was used to post data to a Jetty instance : "jettyURL"
      static java.lang.String JETTY_USER_ROLE_ATTR
      Key used to store the the user roles via ServletRequest.setAttribute(String, Object) if possible.
      static java.lang.String JETTY_USER_ROLES
      Metadata key that contains the roles associated with a user, if available: "jettyUserRoles".
      static java.lang.String JETTY_WRAPPER
      Metadata key for the JettyWrapper object metadata made available from Jetty.
    • Constructor Summary

      Constructors 
      Constructor Description
      JettyConstants()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • JETTY_WRAPPER

        public static final java.lang.String JETTY_WRAPPER
        Metadata key for the JettyWrapper object metadata made available from Jetty.
        See Also:
        Constant Field Values
      • JETTY_URL

        public static final java.lang.String JETTY_URL
        Metadata key that contains the URL that was used to post data to a Jetty instance : "jettyURL"
        See Also:
        HttpServletRequest.getRequestURL(), Constant Field Values
      • JETTY_URI

        public static final java.lang.String JETTY_URI
        Metadata key that contains the URI that was used to post data to a Jetty instance : "jettyURI"
        See Also:
        HttpServletRequest.getRequestURI(), Constant Field Values
      • JETTY_QUERY_STRING

        public static final java.lang.String JETTY_QUERY_STRING
        Metadata key that contains the query string that was used to post data to a Jetty instance : "jettyQueryString"
        See Also:
        HttpServletRequest.getQueryString(), Constant Field Values
      • JETTY_USER_ROLES

        public static final java.lang.String JETTY_USER_ROLES
        Metadata key that contains the roles associated with a user, if available: "jettyUserRoles".
        See Also:
        Constant Field Values
      • JETTY_USER_ROLE_ATTR

        public static final java.lang.String JETTY_USER_ROLE_ATTR
        Key used to store the the user roles via ServletRequest.setAttribute(String, Object) if possible.

        This is intended for use by LoginService instances to communicate the user roles to BasicJettyConsumer which will in turn populate the JETTY_USER_ROLES metadata key.

        See Also:
        Constant Field Values
    • Constructor Detail

      • JettyConstants

        public JettyConstants()