Files
codeql/java/ql/test/stubs/apache-log4j-2.14.1/javax/servlet/annotation/ServletSecurity.java
Tony Torralba 2e0ca6ce2b Add stubs
2021-12-16 13:44:01 +01:00

24 lines
645 B
Java
Generated

// Generated automatically from javax.servlet.annotation.ServletSecurity for testing purposes
package javax.servlet.annotation;
import java.lang.annotation.Annotation;
import javax.servlet.annotation.HttpConstraint;
import javax.servlet.annotation.HttpMethodConstraint;
public interface ServletSecurity extends Annotation
{
HttpConstraint value();
HttpMethodConstraint[] httpMethodConstraints();
static public enum EmptyRoleSemantic
{
DENY, PERMIT;
private EmptyRoleSemantic() {}
}
static public enum TransportGuarantee
{
CONFIDENTIAL, NONE;
private TransportGuarantee() {}
}
}