Enum Class RestAuthorizationAction
- All Implemented Interfaces:
DisplayableValue<String>
,Serializable
,Comparable<RestAuthorizationAction>
,Constable
public enum RestAuthorizationAction
extends Enum<RestAuthorizationAction>
implements DisplayableValue<String>
Represents a REST action (method) that can be authorized.
The methods protected by other means (e.g., by intra-cluster authentication) are currently not listed here.
See also `ModelAuthorizationAction`.
Notes:
.
AuthorizationConstants.AUTZ_REST_ALL_URL
is a special action that covers all REST actions.
. AuthorizationConstants.AUTZ_REST_PROXY_URL
is *not* a REST action URL.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescription@NotNull String
Returns longer description that can be used as a help text, tooltip or for similar purpose.@NotNull String
getLabel()
Returns short user-friendly label.@NotNull String
getUri()
getValue()
Retuns actual value.static RestAuthorizationAction
Returns the enum constant of this class with the specified name.static RestAuthorizationAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GENERATE_VALUE
-
RPC_GENERATE_VALUE
-
VALIDATE_VALUE
-
RPC_VALIDATE_VALUE
-
GET_VALUE_POLICY
-
GET_OBJECT
-
GET_SELF
-
GET_OBJECTS
-
ADD_OBJECT
-
DELETE_OBJECT
-
MODIFY_OBJECT
-
NOTIFY_CHANGE
-
FIND_SHADOW_OWNER
-
IMPORT_SHADOW
-
SEARCH_OBJECTS
-
IMPORT_FROM_RESOURCE
-
TEST_RESOURCE
-
SUSPEND_TASK
-
RESUME_TASK
-
RUN_TASK
-
EXECUTE_SCRIPT
-
COMPARE_OBJECT
-
GET_LOG_SIZE
-
GET_LOG
-
RESET_CREDENTIAL
-
GET_THREADS
-
GET_TASKS_THREADS
-
GET_TASK_THREADS
-
GET_EXTENSION_SCHEMA
-
COMPLETE_WORK_ITEM
-
DELEGATE_WORK_ITEM
-
CLAIM_WORK_ITEM
-
RELEASE_WORK_ITEM
-
CANCEL_CASE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getUri
-
getValue
Description copied from interface:DisplayableValue
Retuns actual value. This may not be user-friendly.- Specified by:
getValue
in interfaceDisplayableValue<String>
-
getLabel
Description copied from interface:DisplayableValue
Returns short user-friendly label. Catalog key may be returned instead of actual text.- Specified by:
getLabel
in interfaceDisplayableValue<String>
-
getDescription
Description copied from interface:DisplayableValue
Returns longer description that can be used as a help text, tooltip or for similar purpose. Catalog key may be returned instead of actual text.- Specified by:
getDescription
in interfaceDisplayableValue<String>
-