property from the mule message for the value of “Host” -All properties are stored in Map -There are two ways to access them -#[message.getInboundProperty(‘host’)] -#[message.InboundProperties[‘host’]] -In order to access Mule Registry, use below expression -#[app.registry]
be accessed directly by calling the fieldname from payload. For example, payload is of CustomerDetails object and want to access lastname then use the below expression #[payload.lastName]
also be triggered using MEL For example, payload is of CustomerDetails object and want to trigger getFirstName method then use below expressiono #[payload.getFirstName()]