Uses of Class
com.caucho.server.security.AbstractConstraint

Packages that use AbstractConstraint
com.caucho.server.security   
 

Uses of AbstractConstraint in com.caucho.server.security
 

Subclasses of AbstractConstraint in com.caucho.server.security
 class ContainerConstraint
           
 class IPConstraint
          Allow or deny requests based on the ip address of the client.
 class RoleConstraint
           
 class TransportConstraint
           
 

Methods in com.caucho.server.security that return AbstractConstraint
 AbstractConstraint SecurityConstraint.getConstraint()
          return the constraint
protected  AbstractConstraint[] ContainerConstraint.toArray()
          converts the sub constraints to an array.
protected  AbstractConstraint[] AbstractConstraint.toArray()
          converts the sub constraints to an array.
 

Methods in com.caucho.server.security with parameters of type AbstractConstraint
 void SecurityConstraint.addConstraint(AbstractConstraint constraint)
          Sets a custom constraint
 void ContainerConstraint.addConstraint(AbstractConstraint constraint)
          Adds a constraint.
 

Method parameters in com.caucho.server.security with type arguments of type AbstractConstraint
 void SecurityFilterChain.setConstraints(java.util.ArrayList<AbstractConstraint> constraints)