Uses of Interface
org.mule.umo.transformer.UMOSimpleTransformer

Packages that use UMOSimpleTransformer
org.mule.transformers Provides the default transformer base implementations for Mule including compression and encryption support. 
org.mule.transformers.codec Transformers for Base64, UC and UU encoding/decoding. 
org.mule.transformers.compression Transformers for compressing and uncompressing message payloads. 
org.mule.transformers.encryption Transformers for encrypting and decrypting message payloads. 
org.mule.transformers.simple Basic transformer implementations. 
org.mule.umo.transformer Contains the interfaces for transformers and exceptions for the UMO Transformer API. 
 

Uses of UMOSimpleTransformer in org.mule.transformers
 

Classes in org.mule.transformers that implement UMOSimpleTransformer
 class AbstractEventAwareTransformer
          AbstractEventAwareTransformer is a transformer that has a reference to the current message.
 class AbstractTransformer
          AbstractTransformer Is a base class for all transformers.
 class NoActionTransformer
          NoActionTransformer doesn't do any transformation on the source object and returns the source as the result.
 

Uses of UMOSimpleTransformer in org.mule.transformers.codec
 

Classes in org.mule.transformers.codec that implement UMOSimpleTransformer
 class Base64Decoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string
 class Base64Encoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string
 class SgmlEntityDecoder
          Decodes a string containing SGML entities
 class SgmlEntityEncoder
          Encodes a string with SGML entities
 class UCDecoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string
 class UCEncoder
          Base64Encoder transforms strings or byte arrays into UU encoded string
 class UUDecoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string
 class UUEncoder
          Base64Encoder transforms strings or byte arrays into UU encoded string
 

Uses of UMOSimpleTransformer in org.mule.transformers.compression
 

Classes in org.mule.transformers.compression that implement UMOSimpleTransformer
 class AbstractCompressionTransformer
          AbstractCompressionTransformer is a base class for all transformers that can compress or uncompress data when they performa message transformation.
 class GZipCompressTransformer
          GZipCompressTransformer is a transformer compressing objects into byte arrays
 class GZipUncompressTransformer
          GZipCompressTransformer TODO
 

Uses of UMOSimpleTransformer in org.mule.transformers.encryption
 

Classes in org.mule.transformers.encryption that implement UMOSimpleTransformer
 class AbstractEncryptionTransformer
          EncryptionTransformer will transform an array of bytes or string into an encrypted array of bytes
 class DecryptionTransformer
          EncryptionTransformer will transform an encrypted array of bytes or string into an decrypted array of bytes
 class EncryptionTransformer
          EncryptionTransformer will transform an array of bytes or string into an encrypted array of bytes
 

Uses of UMOSimpleTransformer in org.mule.transformers.simple
 

Classes in org.mule.transformers.simple that implement UMOSimpleTransformer
 class ByteArrayToHexString
          Converts a Byte array to a Hex String
 class ByteArrayToObject
          ByteArrayToObject works in the same way as ByteArrayToSerializable but checks if th byte array is a serialised object and if not will return a String created from the bytes is the returnType on the transformer.
 class ByteArrayToSerializable
          ByteArrayToSerializable converts a serialized object to its object representation
 class ByteArrayToString
          ByteArrayToString converts a byte array into a String.
 class HexStringToByteArray
          Converts a Hex String to a Byte array
 class MapLookup
          MapLookup looks up and returns an object from a Map based on a key.
 class ObjectToByteArray
          ObjectToByteArray converts serilaizable object to a byte array but treats java.lang.String differently by converting to bytes using the String.getBytrs() method.
 class ObjectToString
          ObjectToString transformer is useful for debugging.
 class SerializableToByteArray
          SerializableToByteArray converts a serializable object or a String to a byte array.
 class StringToByteArray
          StringToByteArray converts a string into a byte array
 

Uses of UMOSimpleTransformer in org.mule.umo.transformer
 

Subinterfaces of UMOSimpleTransformer in org.mule.umo.transformer
 interface UMOTransformer
          UMOTransformer extends a UMOSimpleTransformer with the provision of a Transformer component, which simply keeps a copy of the 'live' transfromed data, so that any further transformations will use this cached data.
 



Copyright © 2003-2006 MuleSource Inc.. All Rights Reserved.