mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
24 lines
645 B
Java
Generated
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() {}
|
|
}
|
|
}
|