Uses of Class
org.apache.catalina.deploy.SecurityConstraint
-
Packages that use SecurityConstraint Package Description com.sun.enterprise.web.deploy com.sun.web.security org.apache.catalina org.apache.catalina.core org.apache.catalina.realm This package containsRealmimplementations for the various supported realm technologies for authenticating users and identifying their associated roles. -
-
Uses of SecurityConstraint in com.sun.enterprise.web.deploy
Subclasses of SecurityConstraint in com.sun.enterprise.web.deploy Modifier and Type Class Description classSecurityConstraintDecoratorDecorator of classorg.apache.catalina.deploy.SecurityConstraint -
Uses of SecurityConstraint in com.sun.web.security
Methods in com.sun.web.security that return SecurityConstraint Modifier and Type Method Description SecurityConstraint[]RealmAdapter. findSecurityConstraints(String requestPathMB, String httpMethod, Context context)Returns null if there are no security constraints defined on any of the web resources within the contextSecurityConstraint[]RealmAdapter. findSecurityConstraints(HttpRequest request, Context context)One of the initial operations being done to apply security to a request, is to find out if there are security constraints for a request.Methods in com.sun.web.security with parameters of type SecurityConstraint Modifier and Type Method Description booleanRealmAdapter. hasResourcePermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, Context context)Perform access control based on the specified authorization constraint.booleanRealmAdapter. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints)Enforce any user data constraint required by the security constraint guarding this request URI.booleanRealmAdapter. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, String uri, String method)Checks if the given request URI and method are the target of any user-data-constraint with a transport-guarantee of CONFIDENTIAL, and whether any such constraint is already satisfied.intRealmAdapter. preAuthenticateCheck(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, boolean disableProxyCaching, boolean securePagesWithPragma, boolean ssoEnabled)Checks whether or not authentication is needed. -
Uses of SecurityConstraint in org.apache.catalina
Methods in org.apache.catalina that return SecurityConstraint Modifier and Type Method Description SecurityConstraint[]Realm. findSecurityConstraints(String uri, String method, Context context)Gets the security constraints configured by the given context for the given request URI and method.SecurityConstraint[]Realm. findSecurityConstraints(HttpRequest request, Context context)Return the SecurityConstraints configured to guard the request URI for this request, ornullif there is no such constraint.Methods in org.apache.catalina that return types with arguments of type SecurityConstraint Modifier and Type Method Description List<SecurityConstraint>Context. getConstraints()Gets the (possibly empty) list of security constraints defined for this web application.Methods in org.apache.catalina with parameters of type SecurityConstraint Modifier and Type Method Description voidContext. addConstraint(SecurityConstraint constraint)Add a security constraint to the set for this web application.booleanRealm. hasResourcePermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraint, Context context)Perform access control based on the specified authorization constraint.booleanRealm. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraint)Enforce any user data constraint required by the security constraint guarding this request URI.booleanRealm. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, String uri, String method)Checks if the given request URI and method are the target of any user-data-constraint with a transport-guarantee of CONFIDENTIAL, and whether any such constraint is already satisfied.intRealm. preAuthenticateCheck(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, boolean disableProxyCaching, boolean securePagesWithPragma, boolean ssoEnabled)Checks whether or not authentication is needed. -
Uses of SecurityConstraint in org.apache.catalina.core
Methods in org.apache.catalina.core that return types with arguments of type SecurityConstraint Modifier and Type Method Description List<SecurityConstraint>StandardContext. getConstraints()Gets the security constraints defined for this web application.Methods in org.apache.catalina.core with parameters of type SecurityConstraint Modifier and Type Method Description voidStandardContext. addConstraint(SecurityConstraint constraint)Add a security constraint to the set for this web application. -
Uses of SecurityConstraint in org.apache.catalina.realm
Methods in org.apache.catalina.realm that return SecurityConstraint Modifier and Type Method Description SecurityConstraint[]RealmBase. findSecurityConstraints(String uri, String method, Context context)Gets the security constraints configured by the given context for the given request URI and method.SecurityConstraint[]RealmBase. findSecurityConstraints(HttpRequest request, Context context)Return the SecurityConstraints configured to guard the request URI for this request, ornullif there is no such constraint.Methods in org.apache.catalina.realm with parameters of type SecurityConstraint Modifier and Type Method Description booleanRealmBase. hasResourcePermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, Context context)Perform access control based on the specified authorization constraint.booleanRealmBase. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints)Enforce any user data constraint required by the security constraint guarding this request URI.booleanRealmBase. hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, String uri, String method)Checks if the given request URI and method are the target of any user-data-constraint with a transport-guarantee of CONFIDENTIAL, and whether any such constraint is already satisfied.intRealmBase. preAuthenticateCheck(HttpRequest request, HttpResponse response, SecurityConstraint[] constraints, boolean disableProxyCaching, boolean securePagesWithPragma, boolean ssoEnabled)Checks whether or not authentication is needed.
-