Uses of Interface
org.apache.guacamole.net.auth.ActivityRecordSet
-
Packages that use ActivityRecordSet 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 ActivityRecordSet in org.apache.guacamole.net.auth
Subinterfaces of ActivityRecordSet in org.apache.guacamole.net.auth Modifier and Type Interface Description interface
ConnectionRecordSet
Deprecated.UseActivityRecordSet
<ConnectionRecord
> instead.Classes in org.apache.guacamole.net.auth that implement ActivityRecordSet Modifier and Type Class Description class
DecoratingActivityRecordSet<RecordType extends ActivityRecord>
ActivityRecordSet implementation which simplifies decorating the records within an underlying ActivityRecordSet.class
DelegatingActivityRecordSet<RecordType extends ActivityRecord>
ActivityRecordSet implementation which simply delegates all function calls to an underlying ActivityRecordSet.Methods in org.apache.guacamole.net.auth that return ActivityRecordSet Modifier and Type Method Description ActivityRecordSet<RecordType>
ActivityRecordSet. contains(String value)
Returns the subset of records which contain the given value.ActivityRecordSet<RecordType>
DecoratingActivityRecordSet. contains(String value)
ActivityRecordSet<RecordType>
DelegatingActivityRecordSet. contains(String value)
protected ActivityRecordSet<RecordType>
DecoratingActivityRecordSet. decorate(ActivityRecordSet<RecordType> recordSet)
Given an ActivityRecordSet which originates from a different AuthenticationProvider, returns an identical type of record set optionally wrapped with additional information, functionality, etc.ActivityRecordSet<ConnectionRecord>
AbstractUserContext. getConnectionHistory()
Retrieves all connection records visible to current user.default ActivityRecordSet<ConnectionRecord>
Connection. getConnectionHistory()
Returns an ActivityRecordSet containing ConnectionRecords that represent the usage history of this Connection, including any active users.ActivityRecordSet<ConnectionRecord>
DelegatingConnection. getConnectionHistory()
ActivityRecordSet<ConnectionRecord>
DelegatingUserContext. getConnectionHistory()
ActivityRecordSet<ConnectionRecord>
UserContext. getConnectionHistory()
Retrieves all connection records visible to current user.protected ActivityRecordSet<RecordType>
DelegatingActivityRecordSet. getDelegateActivityRecordSet()
Returns the underlying ActivityRecordSet wrapped by this DelegatingActivityRecordSet.ActivityRecordSet<ActivityRecord>
AbstractUserContext. getUserHistory()
Retrieves all user history records visible to current user.ActivityRecordSet<ActivityRecord>
DelegatingUser. getUserHistory()
ActivityRecordSet<ActivityRecord>
DelegatingUserContext. getUserHistory()
default ActivityRecordSet<ActivityRecord>
User. getUserHistory()
Returns an ActivityRecordSet containing ActivityRecords representing the login history for this user, including any active sessions.ActivityRecordSet<ActivityRecord>
UserContext. getUserHistory()
Retrieves all user history records visible to current user.ActivityRecordSet<RecordType>
ActivityRecordSet. limit(int limit)
Returns the subset of records containing only the firstlimit
records.ActivityRecordSet<RecordType>
DecoratingActivityRecordSet. limit(int limit)
ActivityRecordSet<RecordType>
DelegatingActivityRecordSet. limit(int limit)
ActivityRecordSet<RecordType>
ActivityRecordSet. sort(ActivityRecordSet.SortableProperty property, boolean desc)
Returns a ActivityRecordSet containing identically the records within this set, sorted according to the specified criteria.ActivityRecordSet<RecordType>
DecoratingActivityRecordSet. sort(ActivityRecordSet.SortableProperty property, boolean desc)
ActivityRecordSet<RecordType>
DelegatingActivityRecordSet. sort(ActivityRecordSet.SortableProperty property, boolean desc)
Methods in org.apache.guacamole.net.auth with parameters of type ActivityRecordSet Modifier and Type Method Description protected ActivityRecordSet<RecordType>
DecoratingActivityRecordSet. decorate(ActivityRecordSet<RecordType> recordSet)
Given an ActivityRecordSet which originates from a different AuthenticationProvider, returns an identical type of record set optionally wrapped with additional information, functionality, etc.Constructors in org.apache.guacamole.net.auth with parameters of type ActivityRecordSet Constructor Description DecoratingActivityRecordSet(ActivityRecordSet<RecordType> recordSet)
Creates a new DecoratingActivityRecordSet which decorates the records within the given set.DelegatingActivityRecordSet(ActivityRecordSet<RecordType> recordSet)
Wraps the given ActivityRecordSet such that all function calls against this DelegatingActivityRecordSet will be delegated to it. -
Uses of ActivityRecordSet in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple that implement ActivityRecordSet Modifier and Type Class Description class
SimpleActivityRecordSet<RecordType extends ActivityRecord>
An immutable and empty ActivityRecordSet.class
SimpleConnectionRecordSet
Deprecated.UseSimpleActivityRecordSet
<ConnectionRecord
> instead.Methods in org.apache.guacamole.net.auth.simple that return ActivityRecordSet Modifier and Type Method Description ActivityRecordSet<RecordType>
SimpleActivityRecordSet. contains(String value)
ActivityRecordSet<ConnectionRecord>
SimpleConnection. getConnectionHistory()
ActivityRecordSet<RecordType>
SimpleActivityRecordSet. limit(int limit)
ActivityRecordSet<RecordType>
SimpleActivityRecordSet. sort(ActivityRecordSet.SortableProperty property, boolean desc)
-