Package org.projectnessie.server.authz
Enum CelAccessChecker.AuthorizationRuleType
- java.lang.Object
-
- java.lang.Enum<CelAccessChecker.AuthorizationRuleType>
-
- org.projectnessie.server.authz.CelAccessChecker.AuthorizationRuleType
-
- All Implemented Interfaces:
Serializable,Comparable<CelAccessChecker.AuthorizationRuleType>
- Enclosing class:
- CelAccessChecker
public static enum CelAccessChecker.AuthorizationRuleType extends Enum<CelAccessChecker.AuthorizationRuleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGN_REFERENCE_TO_HASHCOMMIT_CHANGE_AGAINST_REFERENCECREATE_REFERENCEDELETE_ENTITYDELETE_REFERENCELIST_COMMIT_LOGREAD_ENTITY_VALUEREAD_ENTRIESUPDATE_ENTITYVIEW_REFERENCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CelAccessChecker.AuthorizationRuleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CelAccessChecker.AuthorizationRuleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VIEW_REFERENCE
public static final CelAccessChecker.AuthorizationRuleType VIEW_REFERENCE
-
CREATE_REFERENCE
public static final CelAccessChecker.AuthorizationRuleType CREATE_REFERENCE
-
DELETE_REFERENCE
public static final CelAccessChecker.AuthorizationRuleType DELETE_REFERENCE
-
LIST_COMMIT_LOG
public static final CelAccessChecker.AuthorizationRuleType LIST_COMMIT_LOG
-
READ_ENTRIES
public static final CelAccessChecker.AuthorizationRuleType READ_ENTRIES
-
ASSIGN_REFERENCE_TO_HASH
public static final CelAccessChecker.AuthorizationRuleType ASSIGN_REFERENCE_TO_HASH
-
COMMIT_CHANGE_AGAINST_REFERENCE
public static final CelAccessChecker.AuthorizationRuleType COMMIT_CHANGE_AGAINST_REFERENCE
-
READ_ENTITY_VALUE
public static final CelAccessChecker.AuthorizationRuleType READ_ENTITY_VALUE
-
UPDATE_ENTITY
public static final CelAccessChecker.AuthorizationRuleType UPDATE_ENTITY
-
DELETE_ENTITY
public static final CelAccessChecker.AuthorizationRuleType DELETE_ENTITY
-
-
Method Detail
-
values
public static CelAccessChecker.AuthorizationRuleType[] 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 (CelAccessChecker.AuthorizationRuleType c : CelAccessChecker.AuthorizationRuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CelAccessChecker.AuthorizationRuleType 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 nameNullPointerException- if the argument is null
-
-