Uses of Interface
org.apache.guacamole.net.auth.ActivityRecord
-
Packages that use ActivityRecord 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 ActivityRecord in org.apache.guacamole.net.auth
Classes in org.apache.guacamole.net.auth with type parameters of type ActivityRecord Modifier and Type Interface Description interface
ActivityRecordSet<RecordType extends ActivityRecord>
A set of all available records related to a type of activity which has a defined start and end time, such as a user being logged in or connected, or a subset of those records.Subinterfaces of ActivityRecord in org.apache.guacamole.net.auth Modifier and Type Interface Description interface
ConnectionRecord
A logging record describing when a user started and ended usage of a particular connection.Methods in org.apache.guacamole.net.auth that return types with arguments of type ActivityRecord Modifier and Type Method Description List<? extends ActivityRecord>
DelegatingUser. getHistory()
Deprecated.default List<? extends ActivityRecord>
User. getHistory()
Deprecated.This function is deprecated in favor ofUser.getUserHistory()
, which returns the login history as an ActivityRecordSet which supports various sort and filter functions.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. -
Uses of ActivityRecord in org.apache.guacamole.net.auth.simple
Classes in org.apache.guacamole.net.auth.simple with type parameters of type ActivityRecord Modifier and Type Class Description class
SimpleActivityRecordSet<RecordType extends ActivityRecord>
An immutable and empty ActivityRecordSet.
-