org.apache.catalina.deploy
Class JspPropertyGroup

java.lang.Object
  extended by org.apache.catalina.deploy.JspPropertyGroup
All Implemented Interfaces:
java.io.Serializable, javax.servlet.descriptor.JspPropertyGroupDescriptor

public class JspPropertyGroup
extends java.lang.Object
implements java.io.Serializable, javax.servlet.descriptor.JspPropertyGroupDescriptor

See Also:
Serialized Form

Field Summary
protected  java.lang.String buffer
           
protected  java.lang.String defaultContentType
           
protected  java.lang.String deferredSyntaxAllowedAsLiteral
           
protected  java.lang.String elIgnored
           
protected  java.lang.String errorOnUndeclaredNamespace
           
protected  java.util.ArrayList<java.lang.String> includeCodas
           
protected  java.util.ArrayList<java.lang.String> includePreludes
           
protected  java.lang.String isXml
           
protected  java.lang.String pageEncoding
           
protected  java.lang.String scriptingInvalid
           
protected  java.lang.String trimDirectiveWhitespaces
           
protected  java.util.ArrayList<java.lang.String> urlPatterns
           
 
Constructor Summary
JspPropertyGroup()
           
 
Method Summary
 void addIncludeCoda(java.lang.String includeCoda)
           
 void addIncludePrelude(java.lang.String includePrelude)
           
 void addUrlPattern(java.lang.String urlPattern)
           
 java.lang.String getBuffer()
          Gets the value of the buffer configuration, which specifies the default size of the response buffer for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getDefaultContentType()
          Gets the value of the default-content-type configuration, which specifies the default response content type for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getDeferredSyntaxAllowedAsLiteral()
          Gets the value of the deferred-syntax-allowed-as-literal configuration, which specifies whether the character sequence "#{", which is normally reserved for Expression Language (EL) expressions, will cause a translation error if it appears as a String literal in any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getElIgnored()
          Gets the value of the el-ignored configuration, which specifies whether Expression Language (EL) evaluation is enabled for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getErrorOnUndeclaredNamespace()
          Gets the value of the error-on-undeclared-namespace configuration, which specifies whether an error will be raised at translation time if tag with an undeclared namespace is used in any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.util.ArrayList<java.lang.String> getIncludeCodas()
          Gets the include-coda configuration of the JSP property group represented by this JspPropertyGroupDescriptor.
 java.util.ArrayList<java.lang.String> getIncludePreludes()
          Gets the include-prelude configuration of the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getIsXml()
          Gets the value of the is-xml configuration, which specifies whether any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor will be treated as JSP documents (XML syntax).
 java.lang.String getPageEncoding()
          Gets the value of the page-encoding configuration, which specifies the default page encoding for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getScriptingInvalid()
          Gets the value of the scripting-invalid configuration, which specifies whether scripting is enabled for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.lang.String getTrimDirectiveWhitespaces()
          Gets the value of the trim-directive-whitespaces configuration, which specifies whether template text containing only whitespaces must be removed from the response output of any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.
 java.util.ArrayList<java.lang.String> getUrlPatterns()
          Gets the URL patterns of the JSP property group represented by this JspPropertyGroupDescriptor.
 void setBuffer(java.lang.String buffer)
           
 void setDefaultContentType(java.lang.String defaultContentType)
           
 void setDeferredSyntaxAllowedAsLiteral(java.lang.String deferredSyntaxAllowedAsLiteral)
           
 void setElIgnored(java.lang.String elIgnored)
           
 void setErrorOnUndeclaredNamespace(java.lang.String errorOnUndeclaredNamespace)
           
 void setIsXml(java.lang.String isXml)
           
 void setPageEncoding(java.lang.String pageEncoding)
           
 void setScriptingInvalid(java.lang.String scriptingInvalid)
           
 void setTrimDirectiveWhitespaces(java.lang.String trimDirectiveWhitespaces)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

urlPatterns

protected java.util.ArrayList<java.lang.String> urlPatterns

elIgnored

protected java.lang.String elIgnored

pageEncoding

protected java.lang.String pageEncoding

scriptingInvalid

protected java.lang.String scriptingInvalid

isXml

protected java.lang.String isXml

includePreludes

protected java.util.ArrayList<java.lang.String> includePreludes

includeCodas

protected java.util.ArrayList<java.lang.String> includeCodas

deferredSyntaxAllowedAsLiteral

protected java.lang.String deferredSyntaxAllowedAsLiteral

trimDirectiveWhitespaces

protected java.lang.String trimDirectiveWhitespaces

defaultContentType

protected java.lang.String defaultContentType

buffer

protected java.lang.String buffer

errorOnUndeclaredNamespace

protected java.lang.String errorOnUndeclaredNamespace
Constructor Detail

JspPropertyGroup

public JspPropertyGroup()
Method Detail

addUrlPattern

public void addUrlPattern(java.lang.String urlPattern)

getPageEncoding

public java.lang.String getPageEncoding()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the page-encoding configuration, which specifies the default page encoding for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getPageEncoding in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the page-encoding configuration, or null if unspecified

setPageEncoding

public void setPageEncoding(java.lang.String pageEncoding)

addIncludePrelude

public void addIncludePrelude(java.lang.String includePrelude)

addIncludeCoda

public void addIncludeCoda(java.lang.String includeCoda)

getDefaultContentType

public java.lang.String getDefaultContentType()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the default-content-type configuration, which specifies the default response content type for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getDefaultContentType in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the default-content-type configuration, or null if unspecified

setDefaultContentType

public void setDefaultContentType(java.lang.String defaultContentType)

getBuffer

public java.lang.String getBuffer()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the buffer configuration, which specifies the default size of the response buffer for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getBuffer in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the buffer configuration, or null if unspecified

setBuffer

public void setBuffer(java.lang.String buffer)

getElIgnored

public java.lang.String getElIgnored()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the el-ignored configuration, which specifies whether Expression Language (EL) evaluation is enabled for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getElIgnored in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the el-ignored configuration, or null if unspecified

setElIgnored

public void setElIgnored(java.lang.String elIgnored)

getScriptingInvalid

public java.lang.String getScriptingInvalid()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the scripting-invalid configuration, which specifies whether scripting is enabled for any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getScriptingInvalid in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the scripting-invalid configuration, or null if unspecified

setScriptingInvalid

public void setScriptingInvalid(java.lang.String scriptingInvalid)

getIsXml

public java.lang.String getIsXml()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the is-xml configuration, which specifies whether any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor will be treated as JSP documents (XML syntax).

Specified by:
getIsXml in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the is-xml configuration, or null if unspecified

setIsXml

public void setIsXml(java.lang.String isXml)

getDeferredSyntaxAllowedAsLiteral

public java.lang.String getDeferredSyntaxAllowedAsLiteral()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the deferred-syntax-allowed-as-literal configuration, which specifies whether the character sequence "#{", which is normally reserved for Expression Language (EL) expressions, will cause a translation error if it appears as a String literal in any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getDeferredSyntaxAllowedAsLiteral in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the deferred-syntax-allowed-as-literal configuration, or null if unspecified

setDeferredSyntaxAllowedAsLiteral

public void setDeferredSyntaxAllowedAsLiteral(java.lang.String deferredSyntaxAllowedAsLiteral)

getTrimDirectiveWhitespaces

public java.lang.String getTrimDirectiveWhitespaces()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the trim-directive-whitespaces configuration, which specifies whether template text containing only whitespaces must be removed from the response output of any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getTrimDirectiveWhitespaces in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the trim-directive-whitespaces configuration, or null if unspecified

setTrimDirectiveWhitespaces

public void setTrimDirectiveWhitespaces(java.lang.String trimDirectiveWhitespaces)

getErrorOnUndeclaredNamespace

public java.lang.String getErrorOnUndeclaredNamespace()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the value of the error-on-undeclared-namespace configuration, which specifies whether an error will be raised at translation time if tag with an undeclared namespace is used in any JSP pages mapped to the JSP property group represented by this JspPropertyGroupDescriptor.

Specified by:
getErrorOnUndeclaredNamespace in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
the value of the error-on-undeclared-namespace configuration, or null if unspecified

setErrorOnUndeclaredNamespace

public void setErrorOnUndeclaredNamespace(java.lang.String errorOnUndeclaredNamespace)

getUrlPatterns

public java.util.ArrayList<java.lang.String> getUrlPatterns()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the URL patterns of the JSP property group represented by this JspPropertyGroupDescriptor.

Any changes to the returned Collection must not affect this JspPropertyGroupDescriptor.

Specified by:
getUrlPatterns in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
a (possibly empty) Collection of the URL patterns of the JSP property group represented by this JspPropertyGroupDescriptor

getIncludePreludes

public java.util.ArrayList<java.lang.String> getIncludePreludes()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the include-prelude configuration of the JSP property group represented by this JspPropertyGroupDescriptor.

Any changes to the returned Collection must not affect this JspPropertyGroupDescriptor.

Specified by:
getIncludePreludes in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
a (possibly empty) Collection of the include-prelude configuration of the JSP property group represented by this JspPropertyGroupDescriptor

getIncludeCodas

public java.util.ArrayList<java.lang.String> getIncludeCodas()
Description copied from interface: javax.servlet.descriptor.JspPropertyGroupDescriptor
Gets the include-coda configuration of the JSP property group represented by this JspPropertyGroupDescriptor.

Any changes to the returned Collection must not affect this JspPropertyGroupDescriptor.

Specified by:
getIncludeCodas in interface javax.servlet.descriptor.JspPropertyGroupDescriptor
Returns:
a (possibly empty) Collection of the include-coda configuration of the JSP property group represented by this JspPropertyGroupDescriptor


Copyright © 2000-2009 Apache Software Foundation. All Rights Reserved.