Enum IappUserActionType
- All Implemented Interfaces:
Serializable
,Comparable<IappUserActionType>
,java.lang.constant.Constable
public enum IappUserActionType extends Enum<IappUserActionType>
An enum of iApp user actions
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_DOCUMENT_STORAGE_LOCATION
Add document storage locationADD_MULTI_IDENTITY_PROVIDER
Add multi-identity providerADD_OAUTH_CLIENT_DETAILS
Add OAUTH client detailsADD_PLAN
Add planADDED_IAPP_USER
Added iApp userCREATE_BILLING_REPORT
Create billing reportCREATE_CSV_BILLING_REPORT
Create CSV billing reportCREATE_CSV_USER_ACTIVITY_REPORT
Create CSV user activity reportCREATE_NEW_TIER
Create new tierCREATE_ORGANIZATION
Create organizationCREATE_SAML_IDP_SETTINGS
Create SAML IDP settingsCREATE_USER_ACTIVITY_REPORT
Create user activity reportDELETE_IDENTITY_PROVIDER
Delete identity providerDELETE_MULTI_IDENTITY_PROVIDER
Delete multi-identity providerDELETE_OAUTH_CLIENT_DETAILS
Delete OAUTH client detailsDELETE_SAML_SETTINGS
Delete SAML settingsDELETE_TIER
Delete tierEDIT_DOCUMENT_STORAGE_LOCATION
Edit document storage locationEDIT_IAPP_USER
Edit iApp userEDIT_OAUTH_CLIENT_DETAILS
Edit OAUTH client detailsEDIT_ORGANIZATION
Edit organizationEDIT_ORGANIZATION_TIERS
Edit organization tiersEDIT_SAML_IDP_SETTINGS
Edit SAML IDP settingsEDIT_TIER
Edit tierGET_LOG_AUTHENTICATION_LINKS
Get log authentication linksREMOVE_PLAN
Remove planREMOVED_IAPP_USER
Removed iApp userRESET_EMAIL_USER_ACCOUNT
Reset Email user accountRESET_USER_PASSWORD
Reset user passwordSET_IDENTITY_PROVIDER
Set identity providerSET_USER_PASSWORD
Set user passwordUPDATE_ORGANIZATION
Update organization -
Method Summary
Modifier and Type Method Description static IappUserActionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IappUserActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EDIT_ORGANIZATION
Edit organization -
CREATE_ORGANIZATION
Create organization -
UPDATE_ORGANIZATION
Update organization -
ADD_PLAN
Add plan -
REMOVE_PLAN
Remove plan -
ADDED_IAPP_USER
Added iApp user -
EDIT_IAPP_USER
Edit iApp user -
REMOVED_IAPP_USER
Removed iApp user -
ADD_MULTI_IDENTITY_PROVIDER
Add multi-identity provider -
DELETE_MULTI_IDENTITY_PROVIDER
Delete multi-identity provider -
SET_IDENTITY_PROVIDER
Set identity provider -
DELETE_IDENTITY_PROVIDER
Delete identity provider -
CREATE_SAML_IDP_SETTINGS
Create SAML IDP settings -
EDIT_SAML_IDP_SETTINGS
Edit SAML IDP settings -
SET_USER_PASSWORD
Set user password -
RESET_USER_PASSWORD
Reset user password -
CREATE_CSV_BILLING_REPORT
Create CSV billing report -
CREATE_BILLING_REPORT
Create billing report -
CREATE_CSV_USER_ACTIVITY_REPORT
Create CSV user activity report -
CREATE_USER_ACTIVITY_REPORT
Create user activity report -
DELETE_SAML_SETTINGS
Delete SAML settings -
CREATE_NEW_TIER
Create new tier -
DELETE_TIER
Delete tier -
EDIT_ORGANIZATION_TIERS
Edit organization tiers -
EDIT_TIER
Edit tier -
GET_LOG_AUTHENTICATION_LINKS
Get log authentication links -
ADD_OAUTH_CLIENT_DETAILS
Add OAUTH client details -
EDIT_OAUTH_CLIENT_DETAILS
Edit OAUTH client details -
DELETE_OAUTH_CLIENT_DETAILS
Delete OAUTH client details -
ADD_DOCUMENT_STORAGE_LOCATION
Add document storage location -
EDIT_DOCUMENT_STORAGE_LOCATION
Edit document storage location -
RESET_EMAIL_USER_ACCOUNT
Reset Email user account
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-