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

Packages that use UMOBaseTransformer
org.mule.examples.loanbroker.transformers   
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.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.providers.oracle.jms.transformers   
org.mule.providers.soap.transformers   
org.mule.providers.streaming   
org.mule.providers.xmpp.transformers   
org.mule.samples.errorhandler   
org.mule.samples.hello   
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 UMOBaseTransformer in org.mule.examples.loanbroker.transformers
 

Classes in org.mule.examples.loanbroker.transformers that implement UMOBaseTransformer
 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 RestRequestToCustomerRequest
          Converts parameters on the message into a CustomerQuoteRequest object
 class SetLendersAsRecipients
          Set the Recipient List property on the LoanBrokerQuoteRequest message based on the list of banks in LoanBrokerQuoteRequest.getLenders()
 

Uses of UMOBaseTransformer in org.mule.extras.client
 

Classes in org.mule.extras.client that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.extras.spring.remoting
 

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

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

Classes in org.mule.providers.email.transformers that implement UMOBaseTransformer
 class EmailMessageToString
          EmailMessageToString extracts a java mail Message contents and returns a string.
 class MimeMessageToRfc822ByteArray
           
 class ObjectToMimeMessage
          Transforms a javax.mail.Message to a UMOMessage, with support for attachments
 class Rfc822ByteArraytoMimeMessage
           
 class StringToEmailMessage
          StringToEmailMessage will convert a String to a JavaMail Message, using the String as the contents.
 

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

Classes in org.mule.providers.file.transformers that implement UMOBaseTransformer
 class FileToByteArray
          FileToByteArray reads the contents of a file as a byte array.
 class FileToString
          FileToString reads file contents into a string.
 

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

Classes in org.mule.providers.http.transformers that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.providers.jms.transformers
 

Classes in org.mule.providers.jms.transformers that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.providers.oracle.jms.transformers
 

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

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

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

Uses of UMOBaseTransformer in org.mule.providers.streaming
 

Classes in org.mule.providers.streaming that implement UMOBaseTransformer
 class AbstractStreamingTransformer
          TODO
 

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

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

Uses of UMOBaseTransformer in org.mule.samples.errorhandler
 

Classes in org.mule.samples.errorhandler that implement UMOBaseTransformer
 class ErrorMessageToException
          The ErrorMessageToException transformer extracts and returns the exception encapsulated by the ErrorMessage message payload.
 class ErrorMessageToExceptionBean
          The ErrorMessageToExceptionBean transformer returns the exception bean encapsulated by the ErrorMessage message payload.
 class ExceptionBeanToErrorMessage
           
 

Uses of UMOBaseTransformer in org.mule.samples.hello
 

Classes in org.mule.samples.hello that implement UMOBaseTransformer
 class ChatStringToString
          NameStringToChatString is a dummy transformer used in the hello world application to transform the ChatString object into a string.
 class ExceptionToString
          ExceptionToString converts an exception to a String, returning the exception's getMessage() result.
 class HttpRequestToNameString
           
 class NameStringToChatString
          NameStringToChatString converts from a NameString object to a ChatString object.
 class StdinToNameString
          The transformation removes break-lines and newlines from the string, which potentially could have been added during a stdin input operation.
 class StringToNameString
          StringToNameString converts from a String to a NameString object.
 

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

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

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

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

Uses of UMOBaseTransformer in org.mule.transformers
 

Classes in org.mule.transformers that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.transformers.codec
 

Classes in org.mule.transformers.codec that implement UMOBaseTransformer
 class Base64Decoder
          Base64Encoder transforms Base64 encoded data into strings or byte arrays.
 class Base64Encoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string.
 class XmlEntityDecoder
          Decodes a String or byte[] containing XML entities
 class XmlEntityEncoder
          Encodes a string with XML entities
 

Uses of UMOBaseTransformer in org.mule.transformers.compression
 

Classes in org.mule.transformers.compression that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.transformers.encryption
 

Classes in org.mule.transformers.encryption that implement UMOBaseTransformer
 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 UMOBaseTransformer in org.mule.transformers.script
 

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

Uses of UMOBaseTransformer in org.mule.transformers.simple
 

Classes in org.mule.transformers.simple that implement UMOBaseTransformer
 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 GetBeanProperty
          Looks up a property from a JavaBean using PropertyUtils.getProperty().
 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 MessagePropertiesTransformer
          A configurable message transformer that allows users to add, overwrite and delete properties on the current message.
 class ObjectArrayToString
          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).
 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.
 class StringToObjectArray
          StringToObjectArray converts a String into an object array.
 

Uses of UMOBaseTransformer in org.mule.transformers.xml
 

Classes in org.mule.transformers.xml that implement UMOBaseTransformer
 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 XmlPrettyPrinter
           
 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 UMOBaseTransformer in org.mule.umo.transformer
 

Subinterfaces of UMOBaseTransformer in org.mule.umo.transformer
 interface UMOStreamingTransformer
          TODO
 interface UMOTransformer
          UMOTransformer can be chained together to covert message payloads from one object type to another.
 



Copyright © 2003-2008 MuleSource, Inc.. All Rights Reserved.