Package org.apache.jasper.compiler
Class JspConfig.JspProperty
- java.lang.Object
-
- org.apache.jasper.compiler.JspConfig.JspProperty
-
- Enclosing class:
- JspConfig
public static class JspConfig.JspProperty extends java.lang.ObjectRepresents 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.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBuffer()Returns the buffer size configuration.java.lang.StringgetDefaultContentType()Returns the default content type.java.lang.StringgetErrorOnELNotFound()Returns whether to error on EL not found.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.StringgetPageEncoding()Returns the page encoding.java.lang.StringisDeferedSyntaxAllowedAsLiteral()Returns whether deferred syntax is allowed as literal.java.lang.StringisELIgnored()Returns whether EL is ignored.java.lang.StringisErrorOnUndeclaredNamespace()Returns whether to error on undeclared namespace.java.lang.StringisScriptingInvalid()Returns whether scripting is invalid.java.lang.StringisTrimDirectiveWhitespaces()Returns whether to trim directive whitespaces.java.lang.StringisXml()Returns whether the page is XML.
-
-
-
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 XMLelIgnored- whether EL is ignorederrorOnELNotFound- whether to error on EL not foundscriptingInvalid- whether scripting is invalidpageEncoding- the page encodingincludePrelude- the include preludesincludeCoda- the include codasdeferedSyntaxAllowedAsLiteral- whether deferred syntax is allowed as literaltrimDirectiveWhitespaces- whether to trim directive whitespacesdefaultContentType- the default content typebuffer- the buffer sizeerrorOnUndeclaredNamespace- 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
-
-