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 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)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getBuffer()
      Returns the buffer size configuration.
      java.lang.String getDefaultContentType()
      Returns the default content type.
      java.util.Collection<java.lang.String> getIncludeCoda()
      Returns the collection of include coda files.
      java.util.Collection<java.lang.String> getIncludePrelude()
      Returns the collection of include prelude files.
      java.lang.String getPageEncoding()
      Returns the page encoding.
      java.lang.String isDeferedSyntaxAllowedAsLiteral()
      Returns whether deferred syntax is allowed as literal.
      java.lang.String isELIgnored()
      Returns whether EL is ignored.
      java.lang.String isErrorOnUndeclaredNamespace()
      Returns whether to error on undeclared namespace.
      java.lang.String isScriptingInvalid()
      Returns whether scripting is invalid.
      java.lang.String isTrimDirectiveWhitespaces()
      Returns whether to trim directive whitespaces.
      java.lang.String isXml()
      Returns whether the page is XML.
      • Methods inherited from class java.lang.Object

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

      • JspProperty

        public JspProperty​(java.lang.String isXml,
                           java.lang.String elIgnored,
                           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)
    • 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
      • 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