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.spring.remoting   
org.mule.providers.dq.transformers   
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.gs.transformers   
org.mule.providers.http.transformers   
org.mule.providers.jms.transformers Contains transformers to convert to and from different javax.jms.Message types 
org.mule.providers.oracle.jms.transformers   
org.mule.providers.soap.transformers   
org.mule.providers.xmpp.transformers   
org.mule.samples.errorhandler   
org.mule.samples.hello   
org.mule.samples.loanbroker.esb.transformers   
org.mule.tck.testmodels.fruit Contains the Fruit test model used by the tck and all other testcases in Mule. 
org.mule.tck.testmodels.mule   
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.script   
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.spring.remoting
 

Classes in org.mule.extras.spring.remoting that implement UMOSimpleTransformer
 class ObjectToRemoteInvocationResultTransformer
           
 class ObjectToRemoteInvocationTransformer
           
 

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

Classes in org.mule.providers.dq.transformers that implement UMOSimpleTransformer
 class DQMessageToXml
          DQMessageToXml Will convert a DQMessage to an xml string by extracting the message payload.
 class XmlToDQMessage
           XmlToDQMessage will convert an XML string to a DQMessage.
 

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 ObjectToMimeMessage
          Transforms a javax.mail.Message to a UMOMessage, with support for attachments
 class StringToEmailMessage
          StringToEmailMessage will convert a String to a JavaMail 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 FileToByteArray
          FileToByteArray reads the contents of a file as a byte array.
 class FileToString
          FileToString reads file contents into a string.
 

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

Classes in org.mule.providers.gs.transformers that implement UMOSimpleTransformer
 class UMOMessageToGigaSpacesEntry
           
 class UMOMessageToJavaSpaceEntry
          Convers an outbound event ot a JavaSpace entry that can be written to the space.
 

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 HttpResponseToString
          Converts an Http Response object to String.
 class ObjectToHttpClientMethodRequest
          ObjectToHttpClientMethodRequest transforms a UMOMessage into a HttpClient HttpMethod that represents an HttpRequest.
 class UMOMessageToHttpResponse
          UMOMessageToHttpResponse converts a UMOMEssage into an Http response.
 

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 that 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.providers.oracle.jms.transformers
 

Classes in org.mule.providers.oracle.jms.transformers that implement UMOSimpleTransformer
 class StringToXMLMessage
          Transformer for use with the Oracle Jms Connector.
 

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

Classes in org.mule.providers.soap.transformers that implement UMOSimpleTransformer
 class HttpRequestToSoapRequest
          A simple transformer for converting an Http GET request into a SOAP request.
 

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

Classes in org.mule.providers.xmpp.transformers that implement UMOSimpleTransformer
 class ObjectToXmppPacket
          Creates an Xmpp message packet from a UMOMessage
 

Uses of UMOSimpleTransformer in org.mule.samples.errorhandler
 

Classes in org.mule.samples.errorhandler that implement UMOSimpleTransformer
 class ErrorMessageToException
           
 class ErrorMessageToExceptionBean
           
 class ExceptionBeanToErrorMessage
           
 

Uses of UMOSimpleTransformer in org.mule.samples.hello
 

Classes in org.mule.samples.hello that implement UMOSimpleTransformer
 class ChatStringToString
          NameStringToChatString is a dummy transform used in the hello world application to transform the ChatString object into a string
 class HttpRequestToString
          NameStringToChatString This is test class only for use with the Hello world test application.
 class NameStringToChatString
          NameStringToChatString cnverts from a NameString object to a ChatString object
 class StringToNameString
          StringToNameString converts from a String to a NameString object
 

Uses of UMOSimpleTransformer in org.mule.samples.loanbroker.esb.transformers
 

Classes in org.mule.samples.loanbroker.esb.transformers that implement UMOSimpleTransformer
 class CreditProfileXmlToCreditProfile
           
 class LoanQuoteRequestToCreditProfileArgs
          Extracts the customer information from the request into an array of arguments used to invoke the Credit Agency Session bean
 class LoanQuoteRequestToCustomer
          Extracts the customer information from the request
 class RestRequestToCustomerRequest
          Converts parameters on the message into a CustomerQuoteRequest object
 

Uses of UMOSimpleTransformer in org.mule.tck.testmodels.fruit
 

Classes in org.mule.tck.testmodels.fruit that implement UMOSimpleTransformer
 class ObjectToFruitLover
           
 

Uses of UMOSimpleTransformer in org.mule.tck.testmodels.mule
 

Classes in org.mule.tck.testmodels.mule that implement UMOSimpleTransformer
 class TestCompressionTransformer
           
 

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
          Deprecated. use XmlEntityDecoder instead
 class SgmlEntityEncoder
          Deprecated. use XmlEntityEncoder instead
 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
 class XmlEntityDecoder
          Decodes a String or byte[] containing XML entities
 class XmlEntityEncoder
          Encodes a string with XML entities
 

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.script
 

Classes in org.mule.transformers.script that implement UMOSimpleTransformer
 class ScriptTransformer
          Runs a script to perform transformation on an object.
 

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.transformers.xml
 

Classes in org.mule.transformers.xml that implement UMOSimpleTransformer
 class AbstractXmlTransformer
          AbstractXmlTransformer offers some XSLT transform on a DOM (or other XML-ish) object.
 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 JXPathExtractor
          The JXPathExtractor is a simple transformer that evaluates an xpath expression against the given bean and that returns the result.
 class ObjectToXml
          ObjectToXml converts any object to xml using Xstream.
 class XmlToDomDocument
          XmlToDomDocument transforms 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 an XSLT transform on a DOM (or other XML-ish) 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-2006 MuleSource Inc.. All Rights Reserved.