Package org.apache.guacamole.net.auth
Enum ActivityLog.Type
- All Implemented Interfaces:
Serializable,Comparable<ActivityLog.Type>,java.lang.constant.Constable
- Enclosing interface:
ActivityLog
All possible types of
ActivityLog.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA Guacamole session recording in the form of a Guacamole protocol dump.A text log from a server-side process, such as the Guacamole web application or guacd.A text session recording in the form of a standard typescript.The timing file related to a typescript. -
Method Summary
Modifier and TypeMethodDescriptionReturns the MIME type of the content of an activity log of this type, as might be sent via the HTTP "Content-Type" header.static ActivityLog.TypeReturns the enum constant of this type with the specified name.static ActivityLog.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
GUACAMOLE_SESSION_RECORDING
A Guacamole session recording in the form of a Guacamole protocol dump. -
SERVER_LOG
A text log from a server-side process, such as the Guacamole web application or guacd. -
TYPESCRIPT
A text session recording in the form of a standard typescript. -
TYPESCRIPT_TIMING
The timing file related to a typescript.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getContentType
Returns the MIME type of the content of an activity log of this type, as might be sent via the HTTP "Content-Type" header.- Returns:
- The MIME type of the content of an activity log of this type.
-