Class Constants


  • public class Constants
    extends Object
    Some constants and other global data that are used by the compiler and the runtime.
    Author:
    Anil K. Vijendran, Harish Prabandham, Shawn Bayern, Mark Roth
    • Field Detail

      • JSP_SERVLET_BASE

        public static final String JSP_SERVLET_BASE
        The base class of the generated servlets.
        See Also:
        Constant Field Values
      • SERVICE_METHOD_NAME

        public static final String SERVICE_METHOD_NAME
        _jspService is the name of the method that is called by HttpJspBase.service(). This is where most of the code generated from JSPs go.
        See Also:
        Constant Field Values
      • SERVLET_CLASSPATH

        public static final String SERVLET_CLASSPATH
        FIXME ServletContext attribute for classpath. This is tomcat specific. Other servlet engines may choose to support this attribute if they want to have this JSP engine running on them.
        See Also:
        Constant Field Values
      • JSP_FILE

        public static final String JSP_FILE
        FIXME Request attribute for <jsp-file> element of a servlet definition. If present on a request, this overrides the value returned by request.getServletPath() to select the JSP page to be executed.
        See Also:
        Constant Field Values
      • SERVLET_CLASS_LOADER

        public static final String SERVLET_CLASS_LOADER
        FIXME ServletContext attribute for class loader. This is tomcat specific. Other servlet engines can choose to have this attribute if they want to have this JSP engine running on them.
        See Also:
        Constant Field Values
      • DEFAULT_TAG_BUFFER_SIZE

        public static final int DEFAULT_TAG_BUFFER_SIZE
        Default size for the tag buffers.
        See Also:
        Constant Field Values
      • MAX_POOL_SIZE

        public static final int MAX_POOL_SIZE
        Default tag handler pool size.
        See Also:
        Constant Field Values
      • PRECOMPILE

        public static final String PRECOMPILE
        The query parameter that causes the JSP engine to just pregenerated the servlet but not invoke it.
        See Also:
        Constant Field Values
      • JSP_PACKAGE_NAME

        public static final String JSP_PACKAGE_NAME
        The default package name for compiled jsp pages.
        See Also:
        Constant Field Values
      • TAG_FILE_PACKAGE_NAME

        public static final String TAG_FILE_PACKAGE_NAME
        The default package name for tag handlers generated from tag files
        See Also:
        Constant Field Values
      • INC_REQUEST_URI

        public static final String INC_REQUEST_URI
        Servlet context and request attributes that the JSP engine uses.
        See Also:
        Constant Field Values
      • TAGLIB_DTD_PUBLIC_ID_11

        public static final String TAGLIB_DTD_PUBLIC_ID_11
        Public Id and the Resource path (of the cached copy) of the DTDs and schemas for tag library descriptors.
        See Also:
        Constant Field Values
      • WEBAPP_DTD_PUBLIC_ID_22

        public static final String WEBAPP_DTD_PUBLIC_ID_22
        Public Id and the Resource path (of the cached copy) of the DTDs and schemas for web application deployment descriptors
        See Also:
        Constant Field Values
      • NS_PLUGIN_URL

        public static final String NS_PLUGIN_URL
        Default URLs to download the pluging for Netscape and IE.
        See Also:
        Constant Field Values
      • TEMP_VARIABLE_NAME_PREFIX

        public static final String TEMP_VARIABLE_NAME_PREFIX
        Prefix to use for generated temporary variable names
        See Also:
        Constant Field Values
      • ESC

        public static final char ESC
        A replacement char for "\$". XXX This is a hack to avoid changing EL interpreter to recognize "\$"
        See Also:
        Constant Field Values
      • JSP_VERSION_2_0

        public static final Double JSP_VERSION_2_0
      • JSP_VERSION_2_1

        public static final Double JSP_VERSION_2_1
      • DEFAULT_INITIAL_CAPACITY

        public static final int DEFAULT_INITIAL_CAPACITY
        See Also:
        Constant Field Values
      • JSP_PROPERTY_GROUPS_CONTEXT_ATTRIBUTE

        public static final String JSP_PROPERTY_GROUPS_CONTEXT_ATTRIBUTE
        See Also:
        Constant Field Values
      • JSP_RESOURCE_INJECTOR_CONTEXT_ATTRIBUTE

        public static final String JSP_RESOURCE_INJECTOR_CONTEXT_ATTRIBUTE
        See Also:
        Constant Field Values
      • IS_SECURITY_ENABLED

        public static final boolean IS_SECURITY_ENABLED
        Has security been turned on?
      • JSP_NAME

        public static final String JSP_NAME
        The name of the JSP engine. Used for X-Powered-By identification in the response header
        See Also:
        Constant Field Values
      • XML_BLOCK_EXTERNAL_INIT_PARAM

        public static final String XML_BLOCK_EXTERNAL_INIT_PARAM
        Name of the ServletContext init-param that determines if the XML parsers will block the resolution of external entities.
        See Also:
        Constant Field Values
    • Constructor Detail

      • Constants

        public Constants()