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
Specific types of system-level permissions. Each permission type is
related to a specific class of system-level operation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdminister the system in general, including adding permissions which affect the system (like user creation, connection creation, and system administration).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).Create connections.Create connection groups.Create sharing profiles.Create users.Create user groups. -
Method Summary
Modifier and TypeMethodDescriptionstatic SystemPermission.TypeReturns the enum constant of this type with the specified name.static SystemPermission.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATE_USER
Create users. -
CREATE_USER_GROUP
Create user groups. -
CREATE_CONNECTION
Create connections. -
CREATE_CONNECTION_GROUP
Create connection groups. -
CREATE_SHARING_PROFILE
Create sharing profiles. -
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
Administer the system in general, including adding permissions which affect the system (like user creation, connection creation, and system administration).
-
-
Method Details
-
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
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
-