Package jakarta.servlet.descriptor
Interface JspPropertyGroupDescriptor
public interface JspPropertyGroupDescriptor
Represents the JSP property groups in the deployment descriptors.
- Since:
- Servlet 3.0
- 
Method SummaryModifier and TypeMethodDescriptionObtain the per-page buffer configuration for this group of JSP pages.Obtain the default content type this group of JSP pagesIs the deferred El syntax#{...}allowed to be used as a literal in this group?Is Expression Language ignored for this group?Will the use of an unknown identifier in EL within a JSP page trigger an error for this group?Should an error be raised at translation time for a page in this group if the page contains a reference (e.g. a tag) to a undeclared namespace.Obtain the codas to include for this group.Obtain the preludes to include for this group.getIsXml()Should the JSPs in this group be treated as JSP documents?Obtain the page encoding for this group.Is scripting disabled for this group?Should the JSPs in this group have template text that only contains whitespace removed?Obtain the patterns to which this group applies.
- 
Method Details- 
getUrlPatternsCollection<String> getUrlPatterns()Obtain the patterns to which this group applies.- Returns:
- the patterns to which this group applies
 
- 
getElIgnoredString getElIgnored()Is Expression Language ignored for this group?- Returns:
- trueif EL is ignored, otherwise- false
 
- 
getErrorOnELNotFoundString getErrorOnELNotFound()Will the use of an unknown identifier in EL within a JSP page trigger an error for this group?- Returns:
- trueif an error will be triggered, otherwise- false
- Since:
- Servlet 6.0
 
- 
getPageEncodingString getPageEncoding()Obtain the page encoding for this group.- Returns:
- the page encoding for this group
 
- 
getScriptingInvalidString getScriptingInvalid()Is scripting disabled for this group?- Returns:
- trueif scripting is disabled, otherwise- false
 
- 
getIsXmlString getIsXml()Should the JSPs in this group be treated as JSP documents?- Returns:
- trueif the JSPs should be treated as JSP documents, otherwise- false
 
- 
getIncludePreludesCollection<String> getIncludePreludes()Obtain the preludes to include for this group.- Returns:
- the preludes to include for this group
 
- 
getIncludeCodasCollection<String> getIncludeCodas()Obtain the codas to include for this group.- Returns:
- the codas to include for this group.
 
- 
getDeferredSyntaxAllowedAsLiteralString getDeferredSyntaxAllowedAsLiteral()Is the deferred El syntax#{...}allowed to be used as a literal in this group?- Returns:
- trueif the deferred EL syntax is allowed to be used as a literal, otherwise- false
 
- 
getTrimDirectiveWhitespacesString getTrimDirectiveWhitespaces()Should the JSPs in this group have template text that only contains whitespace removed?- Returns:
- trueif the whitespace be removed, otherwise- false
 
- 
getDefaultContentTypeString getDefaultContentType()Obtain the default content type this group of JSP pages.#- Returns:
- the default content type this group of JSP pages
 
- 
getBufferString getBuffer()Obtain the per-page buffer configuration for this group of JSP pages.- Returns:
- the per-page buffer configuration for this group of JSP pages
 
- 
getErrorOnUndeclaredNamespaceString getErrorOnUndeclaredNamespace()Should an error be raised at translation time for a page in this group if the page contains a reference (e.g. a tag) to a undeclared namespace.- Returns:
- trueif an error should be raised, otherwise- false
 
 
-