com.ibm.itim.policy.analysis
Class PPAProvisioningPolicy
java.lang.Object
|
+--com.ibm.itim.policy.analysis.PPAProvisioningPolicy
- public class PPAProvisioningPolicy
- extends java.lang.Object
This class contains information that can be used in the analysis of
a provisioning policy. Included in the provisioning policy are:
- The name of the provisioning policy.
- The priority of the provisioning policy.
- The scope of the provisioning policy.
- The entitlements for the provisioning policy.
- Author:
- dpalmier
Field Summary |
static int |
SCOPE_SINGLE_LEVEL
Scope value indicating that the provisioning policy has single level scope. |
static int |
SCOPE_SUBTREE
Scope value indicating that the provisioning policy has subtree scope. |
Method Summary |
java.util.Collection |
getEntitlements()
Returns the entitlements for the provisioning policy. |
java.lang.String |
getName()
Returns the name of the provisioning policy. |
int |
getPriority()
Returns the priority of the provisioning policy. |
int |
getScope()
Returns the scope of the provisioning policy. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SCOPE_SINGLE_LEVEL
public static final int SCOPE_SINGLE_LEVEL
- Scope value indicating that the provisioning policy has single level scope.
SCOPE_SUBTREE
public static final int SCOPE_SUBTREE
- Scope value indicating that the provisioning policy has subtree scope.
getEntitlements
public java.util.Collection getEntitlements()
- Returns the entitlements for the provisioning policy.
- Returns:
- The collection of PPAEntitlement objects for the provisioning policy.
- See Also:
PPAEntitlement
getName
public java.lang.String getName()
- Returns the name of the provisioning policy.
- Returns:
- The name of the provisioning policy.
getPriority
public int getPriority()
- Returns the priority of the provisioning policy.
- Returns:
- The priority of the provisioning policy.
getScope
public int getScope()
- Returns the scope of the provisioning policy.
- Returns:
- The scope of the provisioning policy.
Possible return values include:
- PPAProvisioningPolicy.SCOPE_SINGLE_LEVEL if the provisioning policy has single level scope.
- PPAProvisioningPolicy.SCOPE_SUBTREE if the provisioning policy has subtree scope.