mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
20 lines
857 B
Java
Generated
20 lines
857 B
Java
Generated
// Generated automatically from javax.servlet.ServletSecurityElement for testing purposes
|
|
|
|
package javax.servlet;
|
|
|
|
import java.util.Collection;
|
|
import javax.servlet.HttpConstraintElement;
|
|
import javax.servlet.HttpMethodConstraintElement;
|
|
import javax.servlet.annotation.ServletSecurity;
|
|
|
|
public class ServletSecurityElement extends HttpConstraintElement
|
|
{
|
|
public Collection<HttpMethodConstraintElement> getHttpMethodConstraints(){ return null; }
|
|
public Collection<String> getMethodNames(){ return null; }
|
|
public ServletSecurityElement(){}
|
|
public ServletSecurityElement(Collection<HttpMethodConstraintElement> p0){}
|
|
public ServletSecurityElement(HttpConstraintElement p0){}
|
|
public ServletSecurityElement(HttpConstraintElement p0, Collection<HttpMethodConstraintElement> p1){}
|
|
public ServletSecurityElement(ServletSecurity p0){}
|
|
}
|