Class JspConfig.JspProperty

  • Enclosing class:
    JspConfig

    public static class JspConfig.JspProperty
    extends java.lang.Object
    Represents the JSP property configuration values for a JSP page or group of pages.
    • Constructor Summary

      Constructors 
      Constructor Description
      JspProperty​(java.lang.String isXml, java.lang.String elIgnored, java.lang.String errorOnELNotFound, java.lang.String scriptingInvalid, java.lang.String pageEncoding, java.util.Collection<java.lang.String> includePrelude, java.util.Collection<java.lang.String> includeCoda, java.lang.String deferedSyntaxAllowedAsLiteral, java.lang.String trimDirectiveWhitespaces, java.lang.String defaultContentType, java.lang.String buffer, java.lang.String errorOnUndeclaredNamespace)
      Creates a new JspProperty instance with the specified configuration values.
    • Constructor Detail

      • JspProperty

        public JspProperty​(java.lang.String isXml,
                           java.lang.String elIgnored,
                           java.lang.String errorOnELNotFound,
                           java.lang.String scriptingInvalid,
                           java.lang.String pageEncoding,
                           java.util.Collection<java.lang.String> includePrelude,
                           java.util.Collection<java.lang.String> includeCoda,
                           java.lang.String deferedSyntaxAllowedAsLiteral,
                           java.lang.String trimDirectiveWhitespaces,
                           java.lang.String defaultContentType,
                           java.lang.String buffer,
                           java.lang.String errorOnUndeclaredNamespace)
        Creates a new JspProperty instance with the specified configuration values.
        Parameters:
        isXml - whether the page is XML
        elIgnored - whether EL is ignored
        errorOnELNotFound - whether to error on EL not found
        scriptingInvalid - whether scripting is invalid
        pageEncoding - the page encoding
        includePrelude - the include preludes
        includeCoda - the include codas
        deferedSyntaxAllowedAsLiteral - whether deferred syntax is allowed as literal
        trimDirectiveWhitespaces - whether to trim directive whitespaces
        defaultContentType - the default content type
        buffer - the buffer size
        errorOnUndeclaredNamespace - whether to error on undeclared namespace
    • Method Detail

      • isXml

        public java.lang.String isXml()
        Returns whether the page is XML.
        Returns:
        the isXml value, or null if not set
      • isELIgnored

        public java.lang.String isELIgnored()
        Returns whether EL is ignored.
        Returns:
        the elIgnored value, or null if not set
      • getErrorOnELNotFound

        public java.lang.String getErrorOnELNotFound()
        Returns whether to error on EL not found.
        Returns:
        the errorOnELNotFound value
      • isScriptingInvalid

        public java.lang.String isScriptingInvalid()
        Returns whether scripting is invalid.
        Returns:
        the scriptingInvalid value, or null if not set
      • getPageEncoding

        public java.lang.String getPageEncoding()
        Returns the page encoding.
        Returns:
        the page encoding, or null if not set
      • getIncludePrelude

        public java.util.Collection<java.lang.String> getIncludePrelude()
        Returns the collection of include prelude files.
        Returns:
        the include preludes, or null if not set
      • getIncludeCoda

        public java.util.Collection<java.lang.String> getIncludeCoda()
        Returns the collection of include coda files.
        Returns:
        the include codas, or null if not set
      • isDeferedSyntaxAllowedAsLiteral

        public java.lang.String isDeferedSyntaxAllowedAsLiteral()
        Returns whether deferred syntax is allowed as literal.
        Returns:
        the deferred syntax allowed as literal value
      • isTrimDirectiveWhitespaces

        public java.lang.String isTrimDirectiveWhitespaces()
        Returns whether to trim directive whitespaces.
        Returns:
        the trim directive whitespaces value, or null if not set
      • getDefaultContentType

        public java.lang.String getDefaultContentType()
        Returns the default content type.
        Returns:
        the default content type, or null if not set
      • getBuffer

        public java.lang.String getBuffer()
        Returns the buffer size configuration.
        Returns:
        the buffer value, or null if not set
      • isErrorOnUndeclaredNamespace

        public java.lang.String isErrorOnUndeclaredNamespace()
        Returns whether to error on undeclared namespace.
        Returns:
        the errorOnUndeclaredNamespace value