Enum Class AccessOperation
java.lang.Object
java.lang.Enum<AccessOperation>
org.odpi.openmetadata.frameworks.connectors.properties.users.AccessOperation
- All Implemented Interfaces:
Serializable
,Comparable<AccessOperation>
,Constable
The AccessOperation enum defines the type of access granted to user to work with metadata elements.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe user requests to attach feedback elements (comments, tags, likes, reviews) to the metadata element in the catalog.The user requests to attach an anchored element to the metadata element in the catalog.The user requests to attach a non-anchored element to the metadata element in the catalog.The user requests to attach a classification to the metadata element in the catalog, or update an existing classification's properties.The user requests to create a metadata element in the catalog.The user requests to remove a classification from the metadata element in the catalog.The user requests to remove the metadata element from the catalog (archive, soft-delete or purge).The user requests to detach feedback elements (comments, tags, likes, reviews) from the metadata element in the catalog.The user requests to remove an anchored element from the metadata element in the catalog.The user requests to detach a non-anchored element from the metadata element in the catalog.The user requests to read the metadata element in the catalog.The user requests to change the description of the metadata element in the catalog.The user requests to change the status of the metadata element in the catalog. -
Method Summary
Modifier and TypeMethodDescriptionReturn the description for the enum.getName()
Return the descriptive name for the enum.int
Return the numerical value for the enum.toString()
toString() JSON-stylestatic AccessOperation
Returns the enum constant of this class with the specified name.static AccessOperation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
READ
The user requests to read the metadata element in the catalog. -
CREATE
The user requests to create a metadata element in the catalog. -
UPDATE_PROPERTIES
The user requests to change the description of the metadata element in the catalog. -
UPDATE_STATUS
The user requests to change the status of the metadata element in the catalog. -
DELETE
The user requests to remove the metadata element from the catalog (archive, soft-delete or purge). -
ATTACH
The user requests to attach a non-anchored element to the metadata element in the catalog. -
DETACH
The user requests to detach a non-anchored element from the metadata element in the catalog. -
ADD_MEMBER
The user requests to attach an anchored element to the metadata element in the catalog. -
DELETE_MEMBER
The user requests to remove an anchored element from the metadata element in the catalog. -
ADD_FEEDBACK
The user requests to attach feedback elements (comments, tags, likes, reviews) to the metadata element in the catalog. -
DELETE_FEEDBACK
The user requests to detach feedback elements (comments, tags, likes, reviews) from the metadata element in the catalog. -
CLASSIFY
The user requests to attach a classification to the metadata element in the catalog, or update an existing classification's properties. -
DECLASSIFY
The user requests to remove a classification from the metadata element in the catalog.
-
-
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
-
getOrdinal
public int getOrdinal()Return the numerical value for the enum.- Returns:
- int enum value ordinal
-
getName
Return the descriptive name for the enum.- Returns:
- String name
-
getDescription
Return the description for the enum.- Returns:
- String description
-
toString
toString() JSON-style- Overrides:
toString
in classEnum<AccessOperation>
- Returns:
- string description
-