org.mule.transformer.simple |
Basic transformer implementations.
|
Java Source File Name | Type | Comment |
ByteArrayToHexString.java | Class | Converts a Byte array to a Hex String. |
ByteArrayToMuleMessage.java | Class | |
ByteArrayToObject.java | Class | ByteArrayToObject works in the same way as
ByteArrayToSerializable but checks if the byte array is a
serialised object and if not will return a String created from the bytes as the
returnType on the transformer. |
ByteArrayToSerializable.java | Class | |
ExpressionTransformer.java | Class | This transformer will evaluate one or more expressions on the current message and return the results as an Array. |
GetBeanProperty.java | Class | Looks up a property from a JavaBean using PropertyUtils.getProperty(). |
HexStringToByteArray.java | Class | |
MapLookup.java | Class | MapLookup looks up and returns an object from a Map based on a key. |
MessagePropertiesTransformer.java | Class | A configurable message transformer that allows users to add, overwrite and delete
properties on the current message. |
MuleMessageToByteArray.java | Class | |
ObjectArrayToString.java | Class | ObjectArrayToString transformer is the opposite of
StringToObjectArray - it simply converts Object[] to a String in which each
element is separated by a configurable delimiter (default is a space). |
ObjectToByteArray.java | Class | ObjectToByteArray converts serilaizable object to a byte array but
treats java.lang.String differently by converting to bytes using
the String.getBytrs() method. |
ObjectToInputStream.java | Class | ObjectToInputStream converts serilaizable object to a input stream but
treats java.lang.String differently by converting to bytes using
the String.getBytrs() method. |
ObjectToOutputHandler.java | Class | ObjectToOutputHandler converts a byte array into a String. |
ObjectToString.java | Class | ObjectToString transformer is useful for debugging. |
SerializableToByteArray.java | Class | SerializableToByteArray converts a serializable object or a String
to a byte array. |
StringAppendTransformer.java | Class | |
StringToObjectArray.java | Class | StringToObjectArray converts a String into an object array. |