org.eclipse.jetty.servlet
类 ServletContextHandler.JspPropertyGroup

java.lang.Object
  继承者 org.eclipse.jetty.servlet.ServletContextHandler.JspPropertyGroup
所有已实现的接口:
JspPropertyGroupDescriptor
包容类:
ServletContextHandler

public static class ServletContextHandler.JspPropertyGroup
extends Object
implements JspPropertyGroupDescriptor


构造方法摘要
ServletContextHandler.JspPropertyGroup()
           
 
方法摘要
 void addIncludeCoda(String coda)
           
 void addIncludePrelude(String prelude)
           
 void addUrlPattern(String s)
           
 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.
 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.
 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.
 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.
 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.
 Collection<String> getIncludeCodas()
          Gets the include-coda configuration of the JSP property group represented by this JspPropertyGroupDescriptor.
 Collection<String> getIncludePreludes()
          Gets the include-prelude configuration of the JSP property group represented by this JspPropertyGroupDescriptor.
 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).
 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.
 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.
 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.
 Collection<String> getUrlPatterns()
          Gets the URL patterns of the JSP property group represented by this JspPropertyGroupDescriptor.
 void setBuffer(String buffer)
           
 void setDefaultContentType(String defaultContentType)
           
 void setDeferredSyntaxAllowedAsLiteral(String deferredSyntaxAllowedAsLiteral)
           
 void setElIgnored(String s)
           
 void setErrorOnUndeclaredNamespace(String errorOnUndeclaredNamespace)
           
 void setIsXml(String isXml)
           
 void setPageEncoding(String pageEncoding)
           
 void setScriptingInvalid(String scriptingInvalid)
           
 void setTrimDirectiveWhitespaces(String trimDirectiveWhitespaces)
           
 String toString()
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

ServletContextHandler.JspPropertyGroup

public ServletContextHandler.JspPropertyGroup()
方法详细信息

getUrlPatterns

public Collection<String> getUrlPatterns()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getUrlPatterns
返回:
a (possibly empty) Collection of the URL patterns of the JSP property group represented by this JspPropertyGroupDescriptor
另请参见:
JspPropertyGroupDescriptor.getUrlPatterns()

addUrlPattern

public void addUrlPattern(String s)

getElIgnored

public String getElIgnored()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getElIgnored
返回:
the value of the el-ignored configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getElIgnored()

setElIgnored

public void setElIgnored(String s)

getPageEncoding

public String getPageEncoding()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getPageEncoding
返回:
the value of the page-encoding configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getPageEncoding()

setPageEncoding

public void setPageEncoding(String pageEncoding)

setScriptingInvalid

public void setScriptingInvalid(String scriptingInvalid)

setIsXml

public void setIsXml(String isXml)

setDeferredSyntaxAllowedAsLiteral

public void setDeferredSyntaxAllowedAsLiteral(String deferredSyntaxAllowedAsLiteral)

setTrimDirectiveWhitespaces

public void setTrimDirectiveWhitespaces(String trimDirectiveWhitespaces)

setDefaultContentType

public void setDefaultContentType(String defaultContentType)

setBuffer

public void setBuffer(String buffer)

setErrorOnUndeclaredNamespace

public void setErrorOnUndeclaredNamespace(String errorOnUndeclaredNamespace)

getScriptingInvalid

public String getScriptingInvalid()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getScriptingInvalid
返回:
the value of the scripting-invalid configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getScriptingInvalid()

getIsXml

public String getIsXml()
从接口 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).

指定者:
接口 JspPropertyGroupDescriptor 中的 getIsXml
返回:
the value of the is-xml configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getIsXml()

getIncludePreludes

public Collection<String> getIncludePreludes()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getIncludePreludes
返回:
a (possibly empty) Collection of the include-prelude configuration of the JSP property group represented by this JspPropertyGroupDescriptor
另请参见:
JspPropertyGroupDescriptor.getIncludePreludes()

addIncludePrelude

public void addIncludePrelude(String prelude)

getIncludeCodas

public Collection<String> getIncludeCodas()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getIncludeCodas
返回:
a (possibly empty) Collection of the include-coda configuration of the JSP property group represented by this JspPropertyGroupDescriptor
另请参见:
JspPropertyGroupDescriptor.getIncludeCodas()

addIncludeCoda

public void addIncludeCoda(String coda)

getDeferredSyntaxAllowedAsLiteral

public String getDeferredSyntaxAllowedAsLiteral()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getDeferredSyntaxAllowedAsLiteral
返回:
the value of the deferred-syntax-allowed-as-literal configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getDeferredSyntaxAllowedAsLiteral()

getTrimDirectiveWhitespaces

public String getTrimDirectiveWhitespaces()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getTrimDirectiveWhitespaces
返回:
the value of the trim-directive-whitespaces configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getTrimDirectiveWhitespaces()

getDefaultContentType

public String getDefaultContentType()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getDefaultContentType
返回:
the value of the default-content-type configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getDefaultContentType()

getBuffer

public String getBuffer()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getBuffer
返回:
the value of the buffer configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getBuffer()

getErrorOnUndeclaredNamespace

public String getErrorOnUndeclaredNamespace()
从接口 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.

指定者:
接口 JspPropertyGroupDescriptor 中的 getErrorOnUndeclaredNamespace
返回:
the value of the error-on-undeclared-namespace configuration, or null if unspecified
另请参见:
JspPropertyGroupDescriptor.getErrorOnUndeclaredNamespace()

toString

public String toString()
覆盖:
Object 中的 toString


Copyright © 2013. All Rights Reserved.