Uses of Interface
org.apache.guacamole.net.auth.User
-
Packages that use User 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 User in org.apache.guacamole.net.auth
Classes in org.apache.guacamole.net.auth that implement User Modifier and Type Class Description class
AbstractUser
Base implementation of User which provides default implementations of most functions.class
DelegatingUser
User implementation which simply delegates all function calls to an underlying User.Methods in org.apache.guacamole.net.auth that return User Modifier and Type Method Description protected User
DelegatingUser. getDelegateUser()
Returns the underlying User wrapped by this DelegatingUser.User
DelegatingUserContext. self()
User
UserContext. self()
Returns the User whose access rights control the operations of this UserContext.Methods in org.apache.guacamole.net.auth that return types with arguments of type User Modifier and Type Method Description Directory<User>
AbstractUserContext. getUserDirectory()
Retrieves a Directory which can be used to view and manipulate other users, but only as allowed by the permissions given to the user of this UserContext.Directory<User>
DelegatingUserContext. getUserDirectory()
Directory<User>
UserContext. getUserDirectory()
Retrieves a Directory which can be used to view and manipulate other users, 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 User Constructor Description DelegatingUser(User user)
Wraps the given User such that all function calls against this DelegatingUser will be delegated to it. -
Uses of User in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple that implement User Modifier and Type Class Description class
SimpleUser
A read-only User implementation which has no permissions.Methods in org.apache.guacamole.net.auth.simple that return User Modifier and Type Method Description User
SimpleUserContext. self()
Constructors in org.apache.guacamole.net.auth.simple with parameters of type User Constructor Description SimpleUserDirectory(User user)
Deprecated.Creates a new SimpleUserDirectory which provides access to the single user provided.
-