mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
22 lines
539 B
Java
Generated
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() {}
|
|
}
|
|
}
|