Uses of Interface
org.apache.guacamole.net.auth.UserGroup
-
Packages that use UserGroup Package Description org.apache.guacamole.net.auth Provides classes which can be used to extend or replace the authentication functionality of the Guacamole web application.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 UserGroup in org.apache.guacamole.net.auth
Classes in org.apache.guacamole.net.auth that implement UserGroup Modifier and Type Class Description class
AbstractUserGroup
Base implementation of UserGroup which provides default implementations of most functions.class
DelegatingUserGroup
UserGroup implementation which simply delegates all function calls to an underlying UserGroup.Methods in org.apache.guacamole.net.auth that return UserGroup Modifier and Type Method Description protected UserGroup
DelegatingUserGroup. getDelegateUserGroupGroup()
Returns the underlying UserGroup wrapped by this DelegatingUserGroup.Methods in org.apache.guacamole.net.auth that return types with arguments of type UserGroup Modifier and Type Method Description Directory<UserGroup>
AbstractUserContext. getUserGroupDirectory()
Retrieves a Directory which can be used to view and manipulate user groups, but only as allowed by the permissions given to the user of this UserContext.Directory<UserGroup>
DelegatingUserContext. getUserGroupDirectory()
Directory<UserGroup>
UserContext. getUserGroupDirectory()
Retrieves a Directory which can be used to view and manipulate user groups, but only as allowed by the permissions given to the user of this UserContext.Constructors in org.apache.guacamole.net.auth with parameters of type UserGroup Constructor Description DelegatingUserGroup(UserGroup userGroup)
Wraps the given UserGroup such that all function calls against this DelegatingUserGroup will be delegated to it. -
Uses of UserGroup in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple that implement UserGroup Modifier and Type Class Description class
SimpleUserGroup
A read-only UserGroup implementation which has no members and no permissions.
-