Enum Grant.GrantMechanism
- java.lang.Object
- 
- java.lang.Enum<Grant.GrantMechanism>
- 
- com.oracle.bmc.identitydomains.model.Grant.GrantMechanism
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<Grant.GrantMechanism>
 - Enclosing class:
- Grant
 
 public static enum Grant.GrantMechanism extends Enum<Grant.GrantMechanism> implements BmcEnum Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.A customer or the UI should use only grantMechanism values that start with ‘ADMINISTRATOR’: - ‘ADMINISTRATOR_TO_USER’ is for a direct grant to a specific User. - ‘ADMINISTRATOR_TO_GROUP’ is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group. - ‘ADMINISTRATOR_TO_APP’ is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App. *SCIM++ Properties:** - caseExact: true - idcsCsvAttributeNameMappings: [[defaultValue:IMPORT_GRANTS]] - idcsSearchable: true - multiValued: false - mutability: immutable - required: true - returned: default - type: string - uniqueness: none 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AccessRequestAdministratorToAppAdministratorToDelegatedUserAdministratorToDynamicResourceGroupAdministratorToGroupAdministratorToUserAppEntitlementCollectionGroupMembershipImportApproleMembersImportGrantsOpcInfraToAppServiceManagerToAppServiceManagerToUserSyncToUserUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Grant.GrantMechanismcreate(String key)StringgetValue()static Grant.GrantMechanismvalueOf(String name)Returns the enum constant of this type with the specified name.static Grant.GrantMechanism[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ImportApproleMemberspublic static final Grant.GrantMechanism ImportApproleMembers 
 - 
AdministratorToUserpublic static final Grant.GrantMechanism AdministratorToUser 
 - 
AdministratorToDelegatedUserpublic static final Grant.GrantMechanism AdministratorToDelegatedUser 
 - 
AdministratorToGrouppublic static final Grant.GrantMechanism AdministratorToGroup 
 - 
ServiceManagerToUserpublic static final Grant.GrantMechanism ServiceManagerToUser 
 - 
AdministratorToApppublic static final Grant.GrantMechanism AdministratorToApp 
 - 
ServiceManagerToApppublic static final Grant.GrantMechanism ServiceManagerToApp 
 - 
OpcInfraToApppublic static final Grant.GrantMechanism OpcInfraToApp 
 - 
GroupMembershippublic static final Grant.GrantMechanism GroupMembership 
 - 
ImportGrantspublic static final Grant.GrantMechanism ImportGrants 
 - 
SyncToUserpublic static final Grant.GrantMechanism SyncToUser 
 - 
AccessRequestpublic static final Grant.GrantMechanism AccessRequest 
 - 
AppEntitlementCollectionpublic static final Grant.GrantMechanism AppEntitlementCollection 
 - 
AdministratorToDynamicResourceGrouppublic static final Grant.GrantMechanism AdministratorToDynamicResourceGroup 
 - 
UnknownEnumValuepublic static final Grant.GrantMechanism UnknownEnumValue This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 
- 
 - 
Method Detail- 
valuespublic static Grant.GrantMechanism[] values() 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 (Grant.GrantMechanism c : Grant.GrantMechanism.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Grant.GrantMechanism valueOf(String name) 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.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static Grant.GrantMechanism create(String key) 
 
- 
 
-