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

Packages that use UMOSimpleTransformer
org.mule.extras.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.extras.groovy.transformers Groovy transformers are configured to transform messages using groovy scripts. 
org.mule.providers.email.transformers Contains transformers to convert to and from the java.mail.Message type. 
org.mule.providers.file.transformers Transformers for converting to and from the FileMessage type. 
org.mule.providers.http.transformers   
org.mule.providers.jms.transformers Contains transformers to convert to and from different javax.jms.Message types 
org.mule.transformers Provides the default transformer base implementations for Mule including compression and encryption support. 
org.mule.transformers.codec   
org.mule.transformers.compression   
org.mule.transformers.encryption   
org.mule.transformers.simple Basic transformer implementations. 
org.mule.transformers.xml Xml and Xslt Transformer implementations. 
org.mule.umo.transformer Contains the interfaces for transformers and exceptions for the UMO Transformer API. 
 

Uses of UMOSimpleTransformer in org.mule.extras.client
 

Classes in org.mule.extras.client that implement UMOSimpleTransformer
 class AbstractEventTransformer
          AbstractEventTransformer adds support for adding method details to the result message.
 class EventObjectTransformer
          EventObjectTransformer converts a java.util.EventObject into a MuleMessage.
 

Uses of UMOSimpleTransformer in org.mule.extras.groovy.transformers
 

Classes in org.mule.extras.groovy.transformers that implement UMOSimpleTransformer
 class GroovyTransformer
          GroovyTransformer a classloader for groovy scripts.
 

Uses of UMOSimpleTransformer in org.mule.providers.email.transformers
 

Classes in org.mule.providers.email.transformers that implement UMOSimpleTransformer
 class EmailMessageToString
          EmailMessageToString extracts a java mail Message contents and returns a string.
 class StringToEmailMessage
          StringToEmailMessage will convert a string to a java mail Message, using the string as the contents.
 

Uses of UMOSimpleTransformer in org.mule.providers.file.transformers
 

Classes in org.mule.providers.file.transformers that implement UMOSimpleTransformer
 class FileMessageToObject
          Deprecated. There is no longer a FileMessage. Transfromers are usedto read the file message contents
 class FileToByteArray
          FileToByteArray reads the contents of a files as a byte array
 class FileToString
          FileToString reads a file's contents intor a string.
 class ObjectToFileMessage
          Deprecated. This is no longer needed as there is no longer a FileMessage type
 

Uses of UMOSimpleTransformer in org.mule.providers.http.transformers
 

Classes in org.mule.providers.http.transformers that implement UMOSimpleTransformer
 class HttpClientMethodResponseToObject
          HttpClientMethodResponseToObject transforms a http client response to a MuleMessage.
 class ObjectToHttpClientMethodRequest
          ObjectToHttpClientMethodRequest transforms a UMOMessage into a HttpClient HttpMethod that represents an HttpRequest.
 class UMOMessageToResponseString
          UMOMessageToResponseString TODO
 

Uses of UMOSimpleTransformer in org.mule.providers.jms.transformers
 

Classes in org.mule.providers.jms.transformers that implement UMOSimpleTransformer
 class AbstractJmsTransformer
          AbstractJmsTransformer is an abstract class the should be used for all transformers where a JMS message

will be the transformed or transformee object.

 class JMSMessageToObject
          JMSMessageToObject Will convert a javax.jms.Message or sub-type into an object by extracting the message payload.
 class ObjectToJMSMessage
          ObjectToJMSMessage will convert any object to a javax.jms.Message or sub-type into an object.
 

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 DefaultTransformer
          DefaultTransformer TODO (document class)
 

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 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.
 class GZipCompressTransformer
          GZipCompressTransformer TODO
 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 ByteArrayToSerialisable
          ByteArrayToSerialisable converts a Serialised object to its object representation
 class ByteArrayToString
          ByteArrayToString converts a byte array into a String.
 class SerialisableToByteArray
          SerialisableToByteArray converts a serialisable object or a String to a byte array.
 class StringToByteArray
          StringToByteArray converts a string into a byte array
 

Uses of UMOSimpleTransformer in org.mule.transformers.xml
 

Classes in org.mule.transformers.xml that implement UMOSimpleTransformer
 class AbstractXStreamTransformer
          AbstractXStreamTransformer is a base class for all XStream based transformers.
 class DomDocumentToXml
          DomDocumentToXml Transform a org.w3c.dom.Document to XML String
 class ObjectToXml
          ObjectToXml converts any object to xml using Xstream.
 class XmlToDomDocument
          XmlToDomDocument Transform a XML String to org.w3c.dom.Document.
 class XmlToObject
          XmlToObject converts xml created by the ObjectToXml transformer in to a java object graph.
 class XsltTransformer
          XsltTransformer performs a xslt transform on a Dom object
 

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-2005 SymphonySoft Limited. All Rights Reserved.