Enum SystemPermission.Type

java.lang.Object
java.lang.Enum<SystemPermission.Type>
org.apache.guacamole.net.auth.permission.SystemPermission.Type
All Implemented Interfaces:
Serializable, Comparable<SystemPermission.Type>, java.lang.constant.Constable
Enclosing class:
SystemPermission

public static enum SystemPermission.Type extends Enum<SystemPermission.Type>
Specific types of system-level permissions. Each permission type is related to a specific class of system-level operation.
  • Enum Constant Details

    • CREATE_USER

      public static final SystemPermission.Type CREATE_USER
      Create users.
    • CREATE_USER_GROUP

      public static final SystemPermission.Type CREATE_USER_GROUP
      Create user groups.
    • CREATE_CONNECTION

      public static final SystemPermission.Type CREATE_CONNECTION
      Create connections.
    • CREATE_CONNECTION_GROUP

      public static final SystemPermission.Type CREATE_CONNECTION_GROUP
      Create connection groups.
    • CREATE_SHARING_PROFILE

      public static final SystemPermission.Type CREATE_SHARING_PROFILE
      Create sharing profiles.
    • AUDIT

      public static final SystemPermission.Type AUDIT
      Audit the system in general, which involves the ability to view active and historical connection records, user logon records, etc., but lacks permission to change any of these details (interact with active connections, update user accounts, etc).
    • ADMINISTER

      public static final SystemPermission.Type ADMINISTER
      Administer the system in general, including adding permissions which affect the system (like user creation, connection creation, and system administration).
  • Method Details

    • values

      public static SystemPermission.Type[] 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 SystemPermission.Type 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