Files
codeql/java/ql/test/stubs/javax-servlet-2.5/javax/servlet/annotation/ServletSecurity.java
2021-08-12 11:20:48 -07:00

22 lines
539 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;
public interface ServletSecurity extends Annotation
{
HttpConstraint value();
static public enum EmptyRoleSemantic
{
DENY, PERMIT;
private EmptyRoleSemantic() {}
}
static public enum TransportGuarantee
{
CONFIDENTIAL, NONE;
private TransportGuarantee() {}
}
}