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

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

      
    
Rootfs path

      
    
Size
2621 (2.6 KB)
MD5
fc1f4dee45362da2a4a2455545f55277
SHA1
4bf0c6953f2414ecb4e70421629b316584bda872
SHA256
02090e19f8581f7f8a341422390f10867bd9360d6bc2be2a43a241412e618c92
SHA512

      
    
SHA1_git
1fad57192687bc76d3e66633010f47d3df80892d
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ServletConfig.java | 2.6 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; import java.util.Enumeration; /** * A servlet configuration object used by a servlet container to pass information to a servlet during initialization. */ public interface ServletConfig { /** * Returns the name of this servlet instance. The name may be provided via server administration, assigned in the * web application deployment descriptor, or for an unregistered (and thus unnamed) servlet instance it will be the * servlet's class name. * * @return the name of the servlet instance */ String getServletName(); /** * Returns a reference to the {@link ServletContext} in which the caller is executing. * * @return a {@link ServletContext} object, used by the caller to interact with its servlet container * * @see ServletContext */ ServletContext getServletContext(); /** * Returns a <code>String</code> containing the value of the named initialization parameter, or <code>null</code> if * the parameter does not exist. * * @param name a <code>String</code> specifying the name of the initialization parameter * * @return a <code>String</code> containing the value of the initialization parameter */ String getInitParameter(String name); /** * Returns the names of the servlet's initialization parameters as an <code>Enumeration</code> of * <code>String</code> objects, or an empty <code>Enumeration</code> if the servlet has no initialization * parameters. * * @return an <code>Enumeration</code> of <code>String</code> objects containing the names of the servlet's * initialization parameters */ Enumeration<String> getInitParameterNames(); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
36.84
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