public enum MessageParts extends Enum<MessageParts>
Enum Constant and Description |
---|
AdditionalDetails
Additional details associated with an error message (for instance: stack trace information)
|
CapabilitiesFlags
A list of capabilities (comma-seperate string) of the capabilities of the remote bus.
|
CommandType
Specifies the specific command within the service that is being requested.
|
ConnectionSessionKey
Used mainly for web sockets to negotiate which session the web socket is associated with.
|
ErrorMessage
Specifies an error message.
|
ErrorTo
Specifies the subject to send error messages to.
|
MessageText
Specifies any specific message text to be communicated as part of the command being sent.
|
PollFrequency
The frequency with which short-polling clients should poll the remote bus.
|
PriorityProcessing
If this attribute is present, the bus should give priority to processing it and not subject it to
window matching.
|
Reason |
RemoteServices |
ReplyTo
Specifies what subject which should be replied-to in response to the message being sent.
|
SessionID
A unique identifier for identifying the session with which a message is associated.
|
StackTrace
Specifies stack trace data in String form.
|
Subject
Specifies a subject being referenced for use in an command.
|
SubjectsList
A list of subjects.
|
Throwable
The throwable object in case of an error
|
ToSubject
Specifies the intended recipient queue for the message.
|
Value
Default value payload.
|
WebSocketToken |
WebSocketURL |
Modifier and Type | Method and Description |
---|---|
static MessageParts |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageParts[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageParts CommandType
public static final MessageParts Subject
ToSubject
,
which is used for message routing.public static final MessageParts SubjectsList
public static final MessageParts RemoteServices
public static final MessageParts CapabilitiesFlags
public static final MessageParts PollFrequency
public static final MessageParts Value
public static final MessageParts SessionID
public static final MessageParts MessageText
public static final MessageParts ReplyTo
public static final MessageParts ToSubject
public static final MessageParts ErrorMessage
public static final MessageParts AdditionalDetails
public static final MessageParts ErrorTo
public static final MessageParts Throwable
public static final MessageParts StackTrace
public static final MessageParts Reason
public static final MessageParts PriorityProcessing
public static final MessageParts ConnectionSessionKey
public static final MessageParts WebSocketURL
public static final MessageParts WebSocketToken
public static MessageParts[] values()
for (MessageParts c : MessageParts.values()) System.out.println(c);
public static MessageParts valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.