app
|
The Mule artifact in context. |
|
attributes
|
Attributes (metadata) of a Mule Message object (message). |
-
Fields: Depends on the message type, such as HTTP request attributes.
-
Example: #[attributes] returns message attributes. For an HTTP request, #[attributes.header] returns HTTP header metadata, and #[attributes.version] might return HTTP/1.1.
|
authentication
|
Provides access to the authentication information. |
|
correlationId
|
The correlationId of the message being processed. |
|
dataType
|
Data type of the message payload. |
|
error
|
Error associated with a Mule message object. |
|
flow
|
Deprecated: The name of the current flow. Because flow names are static, this field is deprecated and only available through the Logger component. |
|
message
|
Package (payload and attributes) being processed. |
-
Fields:
-
payload: The message payload, or null if the payload is null.
-
dataType: The message payload’s data type.
-
attributes: The message attributes, or null if the attributes are null.
-
Example: #[message]
|
mule
|
The Mule instance on which the application is currently running. |
|
payload
|
The body of the current Mule message object (message) being processed. |
|
server
|
The operating system on which the Mule instance is running. Exposes information about both the physical server and the JVM on which Mule runs.
|
|
vars
|
All variables currently set on the current Mule event being processed. |
|