Enum RemoteSessionTask.Operation
- java.lang.Object
-
- java.lang.Enum<RemoteSessionTask.Operation>
-
- org.jivesoftware.openfire.session.RemoteSessionTask.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<RemoteSessionTask.Operation>
- Enclosing class:
- RemoteSessionTask
public static enum RemoteSessionTask.Operation extends Enum<RemoteSessionTask.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description close
getAddress
getAuthenticationMethod
getCategory
getCipherSuiteName
getCreationDate
getDescription
getHostAddress
getHostName
getInitialSubdomain
getLastActiveDate
getLocalDomain
Operations of incoming server sessionsgetName
getNumClientPackets
getNumServerPackets
getOutgoingDomainPairs
Operations of outgoing server sessionsgetPeerCertificates
getServerName
getSoftwareVersion
getStreamID
Basic session operationsgetSubdomains
getTLSProtocolName
getType
Operations of external component sessionsgetValidatedDomains
hasRequestedBlocklist
incrementConflictCount
isClosed
isEncrypted
isInitialized
Operations of c2s sessionsremoveDetached
shutdown
start
validate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RemoteSessionTask.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static RemoteSessionTask.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
getStreamID
public static final RemoteSessionTask.Operation getStreamID
Basic session operations
-
getServerName
public static final RemoteSessionTask.Operation getServerName
-
getCreationDate
public static final RemoteSessionTask.Operation getCreationDate
-
getLastActiveDate
public static final RemoteSessionTask.Operation getLastActiveDate
-
getNumClientPackets
public static final RemoteSessionTask.Operation getNumClientPackets
-
getNumServerPackets
public static final RemoteSessionTask.Operation getNumServerPackets
-
getTLSProtocolName
public static final RemoteSessionTask.Operation getTLSProtocolName
-
getCipherSuiteName
public static final RemoteSessionTask.Operation getCipherSuiteName
-
getPeerCertificates
public static final RemoteSessionTask.Operation getPeerCertificates
-
getSoftwareVersion
public static final RemoteSessionTask.Operation getSoftwareVersion
-
close
public static final RemoteSessionTask.Operation close
-
isClosed
public static final RemoteSessionTask.Operation isClosed
-
isEncrypted
public static final RemoteSessionTask.Operation isEncrypted
-
getHostAddress
public static final RemoteSessionTask.Operation getHostAddress
-
getHostName
public static final RemoteSessionTask.Operation getHostName
-
validate
public static final RemoteSessionTask.Operation validate
-
removeDetached
public static final RemoteSessionTask.Operation removeDetached
-
isInitialized
public static final RemoteSessionTask.Operation isInitialized
Operations of c2s sessions
-
incrementConflictCount
public static final RemoteSessionTask.Operation incrementConflictCount
-
hasRequestedBlocklist
public static final RemoteSessionTask.Operation hasRequestedBlocklist
-
getOutgoingDomainPairs
public static final RemoteSessionTask.Operation getOutgoingDomainPairs
Operations of outgoing server sessions
-
getAuthenticationMethod
public static final RemoteSessionTask.Operation getAuthenticationMethod
-
getType
public static final RemoteSessionTask.Operation getType
Operations of external component sessions
-
getCategory
public static final RemoteSessionTask.Operation getCategory
-
getInitialSubdomain
public static final RemoteSessionTask.Operation getInitialSubdomain
-
getSubdomains
public static final RemoteSessionTask.Operation getSubdomains
-
getName
public static final RemoteSessionTask.Operation getName
-
getDescription
public static final RemoteSessionTask.Operation getDescription
-
start
public static final RemoteSessionTask.Operation start
-
shutdown
public static final RemoteSessionTask.Operation shutdown
-
getLocalDomain
public static final RemoteSessionTask.Operation getLocalDomain
Operations of incoming server sessions
-
getAddress
public static final RemoteSessionTask.Operation getAddress
-
getValidatedDomains
public static final RemoteSessionTask.Operation getValidatedDomains
-
-
Method Detail
-
values
public static RemoteSessionTask.Operation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RemoteSessionTask.Operation c : RemoteSessionTask.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemoteSessionTask.Operation valueOf(String name)
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
-
-