Package jakarta.servlet
Class HttpMethodConstraintElement
- java.lang.Object
-
- jakarta.servlet.HttpConstraintElement
-
- jakarta.servlet.HttpMethodConstraintElement
-
public class HttpMethodConstraintElement extends HttpConstraintElement
Programmatic equivalent of a security constraint defined for a single HTTP method.- Since:
- Servlet 3.0
-
-
Constructor Summary
Constructors Constructor Description HttpMethodConstraintElement(java.lang.String methodName)
Construct an instance for the given HTTP method name and a defaultHttpConstraintElement
.HttpMethodConstraintElement(java.lang.String methodName, HttpConstraintElement constraint)
Construct an instance for the given HTTP method name andHttpConstraintElement
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMethodName()
Obtain the name of the HTTP method for which this constraint was created.-
Methods inherited from class jakarta.servlet.HttpConstraintElement
getEmptyRoleSemantic, getRolesAllowed, getTransportGuarantee
-
-
-
-
Constructor Detail
-
HttpMethodConstraintElement
public HttpMethodConstraintElement(java.lang.String methodName)
Construct an instance for the given HTTP method name and a defaultHttpConstraintElement
.- Parameters:
methodName
- The HTTP method name
-
HttpMethodConstraintElement
public HttpMethodConstraintElement(java.lang.String methodName, HttpConstraintElement constraint)
Construct an instance for the given HTTP method name andHttpConstraintElement
.- Parameters:
methodName
- The HTTP method nameconstraint
- The constraint for the given method
-
-