public static enum IndirectPermissionInfoInterface.IndirectPermissionSource
indirect Permission source
ACTSPECIFICATION : identifies the ACT that supplies the indirect permission
GRPMBRSHIP : identifies the UserGroup or Role that supplies the indirect permission
INHERITED : the permission comes from an inheritance parent, or Repository ACT
Inheritance-specific sources:
EXPLICT_ON_PARENT : permission explicitly set on inheritance parent
GROUP_ON_PARENT : permission set from IdentityGroup or Role on inheritance parent
ACT_ON_PARENT : permission set in ACT on inheritance parent
REPOSITORY_DEFAULT_ACT : permission setting comes from Repository Default ACT
Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (IndirectPermissionInfoInterface.IndirectPermissionSource c : IndirectPermissionInfoInterface.IndirectPermissionSource.values())
System.out.println(c);
Returns:
an array containing the constants of this enum type, in
the order they are declared
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.