Uses of Interface
org.apache.guacamole.net.auth.AuthenticationProvider
-
Packages that use AuthenticationProvider 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 AuthenticationProvider in org.apache.guacamole.net.auth
Classes in org.apache.guacamole.net.auth that implement AuthenticationProvider Modifier and Type Class Description class
AbstractAuthenticationProvider
Base implementation of AuthenticationProvider which provides default implementations of most functions.Methods in org.apache.guacamole.net.auth that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
AuthenticatedUser. getAuthenticationProvider()
Returns the AuthenticationProvider that authenticated this user.AuthenticationProvider
DelegatingUserContext. getAuthenticationProvider()
AuthenticationProvider
UserContext. getAuthenticationProvider()
Returns the AuthenticationProvider which created this UserContext, which may not be the same AuthenticationProvider that authenticated the user associated with this UserContext. -
Uses of AuthenticationProvider in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple that implement AuthenticationProvider Modifier and Type Class Description class
SimpleAuthenticationProvider
Provides means of retrieving a set of named GuacamoleConfigurations for a given Credentials object.Methods in org.apache.guacamole.net.auth.simple that return AuthenticationProvider Modifier and Type Method Description AuthenticationProvider
SimpleUserContext. getAuthenticationProvider()
Constructors in org.apache.guacamole.net.auth.simple with parameters of type AuthenticationProvider Constructor Description SimpleUserContext(AuthenticationProvider authProvider, String username, Map<String,org.apache.guacamole.protocol.GuacamoleConfiguration> configs)
Creates a new SimpleUserContext for the user with the given username which provides access to only those configurations within the given Map.SimpleUserContext(AuthenticationProvider authProvider, String username, Map<String,org.apache.guacamole.protocol.GuacamoleConfiguration> configs, boolean interpretTokens)
Creates a new SimpleUserContext for the user with the given username which provides access to only those configurations within the given Map.SimpleUserContext(AuthenticationProvider authProvider, Map<String,org.apache.guacamole.protocol.GuacamoleConfiguration> configs)
Creates a new SimpleUserContext which provides access to only those configurations within the given Map.
-