Uses of Class
org.apache.guacamole.net.auth.Credentials
-
Packages that use Credentials 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.org.apache.guacamole.net.event Provides classes for storing information about events that are triggered when users log into and use the Guacamole web application.org.apache.guacamole.token -
-
Uses of Credentials in org.apache.guacamole.net.auth
Methods in org.apache.guacamole.net.auth that return Credentials Modifier and Type Method Description Credentials
AuthenticatedUser. getCredentials()
Returns the credentials that the user provided when they successfully authenticated.Methods in org.apache.guacamole.net.auth with parameters of type Credentials Modifier and Type Method Description AuthenticatedUser
AbstractAuthenticationProvider. authenticateUser(Credentials credentials)
Returns an AuthenticatedUser representing the user authenticated by the given credentials, if any.AuthenticatedUser
AuthenticationProvider. authenticateUser(Credentials credentials)
Returns an AuthenticatedUser representing the user authenticated by the given credentials, if any.UserContext
AbstractAuthenticationProvider. decorate(UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Given a UserContext returned from getUserContext() of a different AuthenticationProvider, returns a UserContext instance which decorates (wraps) that UserContext, delegating and overriding implemented functions as necessary.UserContext
AuthenticationProvider. decorate(UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Given a UserContext returned from getUserContext() of a different AuthenticationProvider, returns a UserContext instance which decorates (wraps) that UserContext, delegating and overriding implemented functions as necessary.UserContext
AbstractAuthenticationProvider. redecorate(UserContext decorated, UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Given a UserContext returned by updateUserContext() of a different AuthenticationProvider, returns a UserContext instance which decorates (wraps) that UserContext, delegating and overriding implemented functions as necessary.UserContext
AuthenticationProvider. redecorate(UserContext decorated, UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Given a UserContext returned by updateUserContext() of a different AuthenticationProvider, returns a UserContext instance which decorates (wraps) that UserContext, delegating and overriding implemented functions as necessary.AuthenticatedUser
AbstractAuthenticationProvider. updateAuthenticatedUser(AuthenticatedUser authenticatedUser, Credentials credentials)
Returns a new or updated AuthenticatedUser for the given credentials already having produced the given AuthenticatedUser.AuthenticatedUser
AuthenticationProvider. updateAuthenticatedUser(AuthenticatedUser authenticatedUser, Credentials credentials)
Returns a new or updated AuthenticatedUser for the given credentials already having produced the given AuthenticatedUser.UserContext
AbstractAuthenticationProvider. updateUserContext(UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Returns a new or updated UserContext for the given AuthenticatedUser already having the given UserContext.UserContext
AuthenticationProvider. updateUserContext(UserContext context, AuthenticatedUser authenticatedUser, Credentials credentials)
Returns a new or updated UserContext for the given AuthenticatedUser already having the given UserContext. -
Uses of Credentials in org.apache.guacamole.net.auth.simple
Methods in org.apache.guacamole.net.auth.simple with parameters of type Credentials Modifier and Type Method Description AuthenticatedUser
SimpleAuthenticationProvider. authenticateUser(Credentials credentials)
abstract Map<String,org.apache.guacamole.protocol.GuacamoleConfiguration>
SimpleAuthenticationProvider. getAuthorizedConfigurations(Credentials credentials)
Given an arbitrary credentials object, returns a Map containing all configurations authorized by those credentials. -
Uses of Credentials in org.apache.guacamole.net.event
Methods in org.apache.guacamole.net.event that return Credentials Modifier and Type Method Description Credentials
AuthenticationFailureEvent. getCredentials()
Credentials
AuthenticationSuccessEvent. getCredentials()
Credentials
CredentialEvent. getCredentials()
Returns the current credentials of the user triggering the event, if any.Credentials
TunnelCloseEvent. getCredentials()
Credentials
TunnelConnectEvent. getCredentials()
Constructors in org.apache.guacamole.net.event with parameters of type Credentials Constructor Description AuthenticationFailureEvent(Credentials credentials)
Creates a new AuthenticationFailureEvent which represents the failure to authenticate the given credentials.TunnelCloseEvent(AuthenticatedUser authenticatedUser, Credentials credentials, org.apache.guacamole.net.GuacamoleTunnel tunnel)
Creates a new TunnelCloseEvent which represents the closing of the given tunnel via a request associated with the given credentials.TunnelConnectEvent(AuthenticatedUser authenticatedUser, Credentials credentials, org.apache.guacamole.net.GuacamoleTunnel tunnel)
Creates a new TunnelConnectEvent which represents the connecting of the given tunnel via a request associated with the given credentials. -
Uses of Credentials in org.apache.guacamole.token
Methods in org.apache.guacamole.token with parameters of type Credentials Modifier and Type Method Description static void
StandardTokens. addStandardTokens(TokenFilter filter, Credentials credentials)
Deprecated.Adds tokens which are standardized by guacamole-ext to the given TokenFilter using the values from the given Credentials object.
-