Package | Description |
---|---|
net.sourceforge.guacamole.net.basic | |
org.glyptodon.guacamole.net.auth |
Provides classes which can be used to extend or replace the authentication
functionality of the Guacamole web application.
|
org.glyptodon.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.glyptodon.guacamole.net.basic |
Classes specific to the general-purpose web application implemented by
the Guacamole project using the Guacamole APIs.
|
org.glyptodon.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 |
---|---|
Map<String,GuacamoleConfiguration> |
BasicFileAuthenticationProvider.getAuthorizedConfigurations(Credentials credentials) |
Modifier and Type | Method and Description |
---|---|
UserContext |
AuthenticationProvider.getUserContext(Credentials credentials)
Returns the UserContext of the user authorized by the given credentials.
|
UserContext |
AuthenticationProvider.updateUserContext(UserContext context,
Credentials credentials)
Returns a new or updated UserContext for the user authorized by the
give credentials and having the given existing UserContext.
|
Modifier and Type | Method and Description |
---|---|
abstract Map<String,GuacamoleConfiguration> |
SimpleAuthenticationProvider.getAuthorizedConfigurations(Credentials credentials)
Given an arbitrary credentials object, returns a Map containing all
configurations authorized by those credentials.
|
UserContext |
SimpleAuthenticationProvider.getUserContext(Credentials credentials) |
UserContext |
SimpleAuthenticationProvider.updateUserContext(UserContext context,
Credentials credentials) |
Modifier and Type | Method and Description |
---|---|
protected Credentials |
AuthenticatingHttpServlet.getCredentials(javax.servlet.http.HttpSession session)
Returns the credentials associated with the given session.
|
Modifier and Type | Method and Description |
---|---|
Credentials |
AuthenticationSuccessEvent.getCredentials() |
Credentials |
TunnelCloseEvent.getCredentials() |
Credentials |
AuthenticationFailureEvent.getCredentials() |
Credentials |
TunnelConnectEvent.getCredentials() |
Credentials |
CredentialEvent.getCredentials()
Returns the current credentials of the user triggering the event, if any.
|
Constructor and Description |
---|
AuthenticationFailureEvent(Credentials credentials)
Creates a new AuthenticationFailureEvent which represents the failure
to authenticate the given credentials.
|
AuthenticationSuccessEvent(UserContext context,
Credentials credentials)
Creates a new AuthenticationSuccessEvent which represents a successful
authentication attempt with the given credentials.
|
TunnelCloseEvent(UserContext context,
Credentials credentials,
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,
GuacamoleTunnel tunnel)
Creates a new TunnelConnectEvent which represents the connecting of the
given tunnel via a request associated with the given credentials.
|
Copyright © 2014. All rights reserved.