Enum AuthorizationPermission

java.lang.Object
java.lang.Enum<AuthorizationPermission>
org.infinispan.security.AuthorizationPermission
All Implemented Interfaces:
Serializable, Comparable<AuthorizationPermission>

public enum AuthorizationPermission extends Enum<AuthorizationPermission>
AuthorizationPermission.
Since:
7.0
Author:
Tristan Tarrant
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Allows performing "administrative" operations on a cache
    Aggregate permission which implies all of the others
    Aggregate permission which implies all read permissions
    Aggregate permission which implies all write permissions
    Allows bulk-read operations (e.g.
    Allows bulk-write operations (e.g.
    Allows creation of resources (caches, counters, schemas, tasks)
    Allows performing task execution (e.g.
    Allows control of a cache's lifecycle (i.e.
    Allows attaching listeners to a cache
    Allows retrieval of stats
    No permissions
    Allows reading data from a cache
    Allows writing data to a cache
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
     
    boolean
     
    boolean
    matches(int mask)
     
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.
  • Enum Constant Details

  • Method Details

    • values

      public static AuthorizationPermission[] 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

      public static AuthorizationPermission 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
    • getMask

      public int getMask()
    • getSecurityPermission

      public CachePermission getSecurityPermission()
    • matches

      public boolean matches(int mask)
    • implies

      public boolean implies(AuthorizationPermission that)