Uses of Class
ubiware.core.policies.PolicyChecker

Packages that use PolicyChecker
ubiware.core   
ubiware.core.behaviors.creation   
ubiware.core.policies   
 

Uses of PolicyChecker in ubiware.core
 

Methods in ubiware.core that return PolicyChecker
 PolicyChecker UbiwareAgent.getPolicyChecker()
           
 

Methods in ubiware.core with parameters of type PolicyChecker
 void UbiwareAgent.setPolicyChecker(PolicyChecker checker)
           
 

Uses of PolicyChecker in ubiware.core.behaviors.creation
 

Methods in ubiware.core.behaviors.creation that return PolicyChecker
protected  PolicyChecker CreateSlaveBehavior.getPolicyChecker(UbiwareAgent newAgent)
           
protected  PolicyChecker CreateInfraAgentBehavior.getPolicyChecker(UbiwareAgent newAgent)
           
protected abstract  PolicyChecker AbstractAgentCreationBehavior.getPolicyChecker(UbiwareAgent newAgent)
           
protected  PolicyChecker CreateAWABehavior.getPolicyChecker(UbiwareAgent newAgent)
           
protected  PolicyChecker CreateAIABehavior.getPolicyChecker(UbiwareAgent newAgent)
           
protected  PolicyChecker CreatePUABehavior.getPolicyChecker(UbiwareAgent newAgent)
           
 

Uses of PolicyChecker in ubiware.core.policies
 

Subclasses of PolicyChecker in ubiware.core.policies
 class AIAPolicyChecker
           
 class AllowAllPolicyChecker
          A PolicyChecker which allows any action to be executed.
 class AWAPolicyChecker
           
 class DenyAllPolicyChecker
          A PolicyChecker which does not allow actions to be executed.
 class PolicyAgentQueryingPolicyChecker
           
 class PUAPolicychecker
           
 class SafeActionsPolicyChecker
          To be wrapped around an actual policyChecker to speed up when safe actions are executed.
 

Methods in ubiware.core.policies that return PolicyChecker
static PolicyChecker DenyAllPolicyChecker.getInstance()
          get the singleton instance.
static PolicyChecker AllowAllPolicyChecker.getInstance()
          get the singleton instance.
 

Constructors in ubiware.core.policies with parameters of type PolicyChecker
SafeActionsPolicyChecker(ubiware.util.saplbuilder.Resource agentName, PolicyChecker actual)