Uses of Interface
org.apache.guacamole.net.auth.Identifiable
-
Packages that use Identifiable 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 Identifiable in org.apache.guacamole.net.auth
Classes in org.apache.guacamole.net.auth with type parameters of type Identifiable Modifier and Type Class Description classDecoratingDirectory<ObjectType extends Identifiable>Directory implementation which simplifies decorating the objects within an underlying Directory.classDelegatingDirectory<ObjectType extends Identifiable>Directory implementation which simply delegates all function calls to an underlying Directory.interfaceDirectory<ObjectType extends Identifiable>Provides access to a collection of all objects with associated identifiers, and allows user manipulation and removal.Subinterfaces of Identifiable in org.apache.guacamole.net.auth Modifier and Type Interface Description interfaceActiveConnectionA pairing of username and GuacamoleTunnel representing an active usage of a particular connection.interfaceAuthenticatedUserA user of the Guacamole web application who has been authenticated by an AuthenticationProvider.interfaceConnectionRepresents a pairing of a GuacamoleConfiguration with a unique, human-readable identifier, and abstracts the connection process.interfaceConnectionGroupRepresents a connection group, which can contain both other connection groups as well as connections.interfaceSharingProfileRepresents the semantics which apply to an existing connection when shared, along with a human-readable name and unique identifier.interfaceUserA user of the Guacamole web application.interfaceUserGroupA user group of the Guacamole web application.Classes in org.apache.guacamole.net.auth that implement Identifiable Modifier and Type Class Description classAbstractActiveConnectionBase implementation of an ActiveConnection, providing storage and simply getters/setters for its main properties.classAbstractAuthenticatedUserBasic implementation of an AuthenticatedUser which uses the username to determine equality.classAbstractConnectionBasic implementation of a Guacamole connection.classAbstractConnectionGroupBasic implementation of a Guacamole connection group.classAbstractIdentifiableAbstract implementation of Identifiable which provides equals() and hashCode() implementations which use the identifier to determine equality.classAbstractSharingProfileBase implementation of a sharing profile which can be used to share a Guacamole connection.classAbstractUserBase implementation of User which provides default implementations of most functions.classAbstractUserGroupBase implementation of UserGroup which provides default implementations of most functions.classDelegatingConnectionConnection implementation which simply delegates all function calls to an underlying Connection.classDelegatingConnectionGroupConnectionGroup implementation which simply delegates all function calls to an underlying ConnectionGroup.classDelegatingSharingProfileSharingProfile implementation which simply delegates all function calls to an underlying SharingProfile.classDelegatingUserUser implementation which simply delegates all function calls to an underlying User.classDelegatingUserGroupUserGroup implementation which simply delegates all function calls to an underlying UserGroup.classTokenInjectingConnectionConnection implementation which overrides the connect() function of an underlying Connection, adding a given set of parameter tokens to the tokens already supplied.classTokenInjectingConnectionGroupConnectionGroup implementation which overrides the connect() function of an underlying ConnectionGroup, adding a given set of parameter tokens to the tokens already supplied. -
Uses of Identifiable in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple with type parameters of type Identifiable Modifier and Type Class Description classSimpleDirectory<ObjectType extends Identifiable>An extremely simple read-only implementation of a Directory which provides access to a pre-defined Map of arbitrary objects.Classes in org.apache.guacamole.net.auth.simple that implement Identifiable Modifier and Type Class Description classSimpleConnectionA Connection implementation which establishes the underlying connection to guacd using the configuration information provided in guacamole.properties.classSimpleConnectionGroupAn extremely simple read-only implementation of a ConnectionGroup which returns the connection and connection group identifiers it was constructed with.classSimpleUserA read-only User implementation which has no permissions.classSimpleUserGroupA read-only UserGroup implementation which has no members and no permissions.Constructors in org.apache.guacamole.net.auth.simple with parameters of type Identifiable Constructor Description SimpleDirectory(ObjectType... objects)Creates a new SimpleDirectory which provides access to the given objects.
-