public interface DataTypeAware
Message to store a DataType which
represents the data type of the Message. Sometimes message content is marshaled
into String, InputStream or etc, and the data type structure is
not available until it's unmarshaled into Java object. The DataType stored
in a DataTypeAware message carries that missing data type information even if it's
marshaled, and whatever the Java class of the body is. This type information is used
to detect required Transformer and Validator.
Data type are automatic turned on if one ore more routes has been explicit configured with input and output types.
Otherwise data type is default off.DataType,
Transformer,
Validator| Modifier and Type | Method and Description |
|---|---|
DataType |
getDataType()
Get the data type of the message.
|
boolean |
hasDataType()
Whether any data type has been configured
|
void |
setBody(Object body,
DataType type)
Set the message body with data type.
|
void |
setDataType(DataType type)
Set the data type of the message.
|
void setDataType(DataType type)
type - data typeDataType getDataType()
boolean hasDataType()
Apache Camel