ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/jakarta/servlet/annotation/WebInitParam.java

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

      
    
Rootfs path

      
    
Size
2007 (2.0 KB)
MD5
c94caed7582baf05121b3b8132a81789
SHA1
62ff15f8aef64eef101887ad0de654b011599eab
SHA256
1312c49555d3395d0177022ea1226c0382d95dac17655bab088980b88cd28c2a
SHA512

      
    
SHA1_git
64ef5f94548beaa60a84ffd7992d50cdfb0e6dc5
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
WebInitParam.java | 2.0 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.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * The annotation used to declare an initialization parameter on a {@link jakarta.servlet.Servlet} or * {@link jakarta.servlet.Filter}, within a {@link jakarta.servlet.annotation.WebFilter} or * {@link jakarta.servlet.annotation.WebServlet} annotation.<br> * <br> * E.g. * <code>&amp;#064;WebServlet(name="TestServlet", urlPatterns={"/test"},initParams={&amp;#064;WebInitParam(name="test", value="true")}) * public class TestServlet extends HttpServlet { ... </code><br> * * @since Servlet 3.0 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface WebInitParam { /** * @return name of the initialization parameter */ String name(); /** * @return value of the initialization parameter */ String value(); /** * @return description of the initialization parameter */ String description() default ""; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
49.79
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