ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java
Status
scanned
Type
file
Name
JspPropertyGroupDescriptor.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3889 (3.8 KB)
MD5
870a34cc564089150abc18f5c0623c59
SHA1
8a650574c9998a021b3b0b625daa096b0bc43ac6
SHA256
5ccc0f6fcd61a9b1b63e9432217fc3e9720764da62f578dffcd1fc3b56cd838b
SHA512

      
    
SHA1_git
9428a7e3694259a667f2c8b3dc574bb6b576edfb
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
JspPropertyGroupDescriptor.java | 3.8 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package jakarta.servlet.descriptor; import java.util.Collection; /** * Represents the JSP property groups in the deployment descriptors. * * @since Servlet 3.0 */ public interface JspPropertyGroupDescriptor { /** * Obtain the patterns to which this group applies. * * @return the patterns to which this group applies */ Collection<String> getUrlPatterns(); /** * Is Expression Language ignored for this group? * * @return {@code true} if EL is ignored, otherwise {@code false} */ String getElIgnored(); /** * Will the use of an unknown identifier in EL within a JSP page trigger an error for this group? * * @return {@code true} if an error will be triggered, otherwise {@code false} * * @since Servlet 6.0 */ String getErrorOnELNotFound(); /** * Obtain the page encoding for this group. * * @return the page encoding for this group */ String getPageEncoding(); /** * Is scripting disabled for this group? * * @return {@code true} if scripting is disabled, otherwise {@code false} */ String getScriptingInvalid(); /** * Should the JSPs in this group be treated as JSP documents? * * @return {@code true} if the JSPs should be treated as JSP documents, otherwise {@code false} */ String getIsXml(); /** * Obtain the preludes to include for this group. * * @return the preludes to include for this group */ Collection<String> getIncludePreludes(); /** * Obtain the codas to include for this group. * * @return the codas to include for this group. */ Collection<String> getIncludeCodas(); /** * Is the deferred El syntax <code>#{...}</code> allowed to be used as a literal in this group? * * @return {@code true} if the deferred EL syntax is allowed to be used as a literal, otherwise {@code false} */ String getDeferredSyntaxAllowedAsLiteral(); /** * Should the JSPs in this group have template text that only contains whitespace removed? * * @return {@code true} if the whitespace be removed, otherwise {@code false} */ String getTrimDirectiveWhitespaces(); /** * Obtain the default content type this group of JSP pages.# * * @return the default content type this group of JSP pages */ String getDefaultContentType(); /** * Obtain the per-page buffer configuration for this group of JSP pages. * * @return the per-page buffer configuration for this group of JSP pages */ String getBuffer(); /** * 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 an undeclared namespace. * * @return {@code true} if an error should be raised, otherwise {@code false} */ String getErrorOnUndeclaredNamespace(); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
25.48
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9