Package javax.servlet
Class HttpMethodConstraintElement
java.lang.Object
javax.servlet.HttpConstraintElement
javax.servlet.HttpMethodConstraintElement
Java Class represntation of an
HttpMethodConstraint
annotation value.- Since:
- Servlet 3.0
-
Constructor Summary
ConstructorDescriptionHttpMethodConstraintElement
(String methodName) Constructs an instance with defaultHttpConstraintElement
value.HttpMethodConstraintElement
(String methodName, HttpConstraintElement constraint) Constructs an instance with specifiedHttpConstraintElement
value. -
Method Summary
Methods inherited from class javax.servlet.HttpConstraintElement
getEmptyRoleSemantic, getRolesAllowed, getTransportGuarantee
-
Constructor Details
-
HttpMethodConstraintElement
Constructs an instance with defaultHttpConstraintElement
value.- Parameters:
methodName
- the name of an HTTP protocol method. The name must not be null, or the empty string, and must be a legitimate HTTP Method name as defined by RFC 2616
-
HttpMethodConstraintElement
Constructs an instance with specifiedHttpConstraintElement
value.- Parameters:
methodName
- the name of an HTTP protocol method. The name must not be null, or the empty string, and must be a legitimate HTTP Method name as defined by RFC 2616constraint
- the HTTPconstraintElement value to assign to the named HTTP method
-
-
Method Details
-
getMethodName
Gets the HTTP method name.- Returns:
- the Http method name
-