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.
|
Modifier and Type | Method and Description |
---|---|
UserContext |
AuthenticationProvider.getUserContext(AuthenticatedUser authenticatedUser)
Returns the UserContext of the user authenticated by the given
credentials.
|
UserContext |
AuthenticationProvider.updateUserContext(UserContext context,
AuthenticatedUser authenticatedUser,
Credentials credentials)
Returns a new or updated UserContext for the given AuthenticatedUser
already having the given UserContext.
|
Modifier and Type | Method and Description |
---|---|
UserContext |
AuthenticationProvider.updateUserContext(UserContext context,
AuthenticatedUser authenticatedUser,
Credentials credentials)
Returns a new or updated UserContext for the given AuthenticatedUser
already having the given UserContext.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleUserContext
An extremely simple UserContext implementation which provides access to
a defined and restricted set of GuacamoleConfigurations.
|
Modifier and Type | Method and Description |
---|---|
UserContext |
SimpleAuthenticationProvider.getUserContext(AuthenticatedUser authenticatedUser) |
UserContext |
SimpleAuthenticationProvider.updateUserContext(UserContext context,
AuthenticatedUser authorizedUser,
Credentials credentials) |
Modifier and Type | Method and Description |
---|---|
UserContext |
SimpleAuthenticationProvider.updateUserContext(UserContext context,
AuthenticatedUser authorizedUser,
Credentials credentials) |
Modifier and Type | Method and Description |
---|---|
UserContext |
UserEvent.getUserContext()
Returns the current UserContext of the user triggering the event, if any.
|
UserContext |
TunnelCloseEvent.getUserContext() |
UserContext |
TunnelConnectEvent.getUserContext() |
UserContext |
AuthenticationSuccessEvent.getUserContext() |
Constructor and Description |
---|
AuthenticationSuccessEvent(UserContext context,
Credentials credentials)
Creates a new AuthenticationSuccessEvent which represents a successful
authentication attempt with the given credentials.
|
TunnelCloseEvent(UserContext context,
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(UserContext context,
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.
|
Copyright © 2016. All rights reserved.