Uses of Class
org.apache.guacamole.net.auth.permission.ObjectPermission.Type
-
Packages that use ObjectPermission.Type Package Description org.apache.guacamole.net.auth.permission Provides classes which describe the various permissions a Guacamole user can be granted.org.apache.guacamole.net.auth.simple Provides a basic AuthenticationProvider base class that can be used to create simple AuthenticationProviders in the same way allowed by the old authentication API. -
-
Uses of ObjectPermission.Type in org.apache.guacamole.net.auth.permission
Methods in org.apache.guacamole.net.auth.permission that return ObjectPermission.Type Modifier and Type Method Description ObjectPermission.TypeObjectPermission. getType()static ObjectPermission.TypeObjectPermission.Type. valueOf(String name)Returns the enum constant of this type with the specified name.static ObjectPermission.Type[]ObjectPermission.Type. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.guacamole.net.auth.permission with parameters of type ObjectPermission.Type Modifier and Type Method Description voidObjectPermissionSet. addPermission(ObjectPermission.Type permission, String identifier)Adds the specified permission for the object having the given identifier.booleanObjectPermissionSet. hasPermission(ObjectPermission.Type permission, String identifier)Tests whether the permission of the given type is granted for the object having the given identifier.voidObjectPermissionSet. removePermission(ObjectPermission.Type permission, String identifier)Removes the specified permission for the object having the given identifier.Method parameters in org.apache.guacamole.net.auth.permission with type arguments of type ObjectPermission.Type Modifier and Type Method Description Collection<String>ObjectPermissionSet. getAccessibleObjects(Collection<ObjectPermission.Type> permissions, Collection<String> identifiers)Tests whether this user has the specified permissions for the objects having the given identifiers.Constructors in org.apache.guacamole.net.auth.permission with parameters of type ObjectPermission.Type Constructor Description ObjectPermission(ObjectPermission.Type type, String identifier)Creates a new ObjectPermission having the given type and identifier. -
Uses of ObjectPermission.Type in org.apache.guacamole.net.auth.simple
Methods in org.apache.guacamole.net.auth.simple with parameters of type ObjectPermission.Type Modifier and Type Method Description voidSimpleObjectPermissionSet. addPermission(ObjectPermission.Type permission, String identifier)booleanSimpleObjectPermissionSet. hasPermission(ObjectPermission.Type permission, String identifier)voidSimpleObjectPermissionSet. removePermission(ObjectPermission.Type permission, String identifier)Method parameters in org.apache.guacamole.net.auth.simple with type arguments of type ObjectPermission.Type Modifier and Type Method Description Collection<String>SimpleObjectPermissionSet. getAccessibleObjects(Collection<ObjectPermission.Type> permissionTypes, Collection<String> identifiers)
-