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

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

      
    
Rootfs path

      
    
Size
2797 (2.7 KB)
MD5
f2b1098affb7b2ab8000c58ce74296cb
SHA1
1ca93163c76e8c9ec5e9fb19640909c981dde8d7
SHA256
a4cf794da6f02dbe8f622f48ea3342d3d77224fd5455c70de8b31ac305c742ad
SHA512

      
    
SHA1_git
7dfb6cc9f28984493b5c65c86188da91b6fdc0aa
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ServletSecurity.java | 2.7 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.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Declare this annotation on a {@link jakarta.servlet.Servlet} implementation class to enforce security constraints on * HTTP protocol requests.<br> * The container applies constraints to the URL patterns mapped to each Servlet which declares this annotation.<br> * <br> * * @since Servlet 3.0 */ @Inherited @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ServletSecurity { /** * Represents the two possible values of the empty role semantic, active when a list of role names is empty. */ enum EmptyRoleSemantic { /** * Access MUST be permitted, regardless of authentication state or identity */ PERMIT, /** * Access MUST be denied, regardless of authentication state or identity */ DENY } /** * Represents the two possible values of data transport, encrypted or not. */ enum TransportGuarantee { /** * User data must not be encrypted by the container during transport */ NONE, /** * The container MUST encrypt user data during transport */ CONFIDENTIAL } /** * The default constraint to apply to requests not handled by specific method constraints * * @return http constraint */ HttpConstraint value() default @HttpConstraint; /** * An array of HttpMethodConstraint objects to which the security constraint will be applied * * @return array of http method constraint */ HttpMethodConstraint[] httpMethodConstraints() default {}; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
37.3
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