Uses of Class
org.mule.transformer.AbstractTransformer

Packages that use AbstractTransformer
org.mule.config.transformer   
org.mule.example.bookstore.transformers   
org.mule.example.errorhandler   
org.mule.example.geomail.transformers   
org.mule.example.hello   
org.mule.example.loanbroker.transformers   
org.mule.example.scripting   
org.mule.expression.transformers   
org.mule.module.atom.transformers   
org.mule.module.json.transformers Transfromers for converting from JavaBeans and collections to JSON and back again. 
org.mule.module.rss.transformers   
org.mule.module.scripting.transformer   
org.mule.module.spring.remoting   
org.mule.module.xml.transformer Xml and Xslt Transformer implementations. 
org.mule.module.xml.transformer.jaxb   
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.tck.transformer   
org.mule.transformer Provides the default transformer base implementations for Mule including compression and encryption support. 
org.mule.transformer.codec Transformers for Base64, UC and UU encoding/decoding. 
org.mule.transformer.compression Transformers for compressing and uncompressing message payloads. 
org.mule.transformer.encryption Transformers for encrypting and decrypting message payloads. 
org.mule.transformer.simple Basic transformer implementations. 
org.mule.transport.email.transformers Contains transformers to convert to and from the java.mail.Message type. 
org.mule.transport.file.transformers Transformers for converting to and from the FileMessage type. 
org.mule.transport.http.servlet   
org.mule.transport.http.transformers   
org.mule.transport.jms.transformers Contains transformers to convert to and from different javax.jms.Message types 
org.mule.transport.servlet.transformers   
org.mule.transport.sftp.transformers   
org.mule.transport.xmpp.transformers   
 

Uses of AbstractTransformer in org.mule.config.transformer
 

Subclasses of AbstractTransformer in org.mule.config.transformer
 class AnnotatedTransformerProxy
          Creates a Mule Transformer proxy around a transform method.
 

Uses of AbstractTransformer in org.mule.example.bookstore.transformers
 

Subclasses of AbstractTransformer in org.mule.example.bookstore.transformers
 class AddBookResponse
          A call to addBook() returns a Long representing the number of books in the catalog.
 class HttpRequestToBook
          Transforms a Map of HttpRequest parameters into a Book object.
 class OrderToEmailTransformer
          Composes an e-mail notification message to be sent based on the Book Order.
 

Uses of AbstractTransformer in org.mule.example.errorhandler
 

Subclasses of AbstractTransformer in org.mule.example.errorhandler
 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 AbstractTransformer in org.mule.example.geomail.transformers
 

Subclasses of AbstractTransformer in org.mule.example.geomail.transformers
 class IPToSender
          TODO
 

Uses of AbstractTransformer in org.mule.example.hello
 

Subclasses of AbstractTransformer in org.mule.example.hello
 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 AbstractTransformer in org.mule.example.loanbroker.transformers
 

Subclasses of AbstractTransformer in org.mule.example.loanbroker.transformers
 class CreditProfileXmlToCreditProfile
           
 class LoanQuoteRequestToCreditProfileArgs
          Extracts the customer information from the request into an array of arguments used to invoke the Credit Agency MuleSession bean
 class RestRequestToCustomerRequest
          Converts parameters on the message into a CustomerQuoteRequest object
 

Uses of AbstractTransformer in org.mule.example.scripting
 

Subclasses of AbstractTransformer in org.mule.example.scripting
 class SimpleMathTransformer
          A simple transformer which adds/subtracts/multiplies/divides a constant factor to numeric messages.
 

Uses of AbstractTransformer in org.mule.expression.transformers
 

Subclasses of AbstractTransformer in org.mule.expression.transformers
 class AbstractExpressionTransformer
          This transformer will evaluate one or more expressions on the current message and return the results as an Array.
 class BeanBuilderTransformer
          This transformer uses the returnClass to create the return object and then will populate the bean with arguments defined as expressions
 class ExpressionTransformer
          This transformer will evaluate one or more expressions on the current message and return the results as an Array.
 

Uses of AbstractTransformer in org.mule.module.atom.transformers
 

Subclasses of AbstractTransformer in org.mule.module.atom.transformers
 class AtomEntryBuilderTransformer
           
 class BaseToOutputHandler
          Converts Abdera model elements which extend Base to OutputHandlers.
 class ObjectToFeed
          ObjectToInputStream converts serilaizable object to a input stream but treats java.lang.String differently by converting to bytes using the String.getBytes() method.
 

Uses of AbstractTransformer in org.mule.module.json.transformers
 

Subclasses of AbstractTransformer in org.mule.module.json.transformers
 class AbstractJsonTransformer
          TODO
 class AbstractToFromXmlTransformer
          Superclass for transformers that convert JSON to and from XML
 class JsonToObject
          A transformer that will convert a JSON encoded object graph to a java object.
 class JsonToXml
          Convert JSON to an XML document string
 class JsonXsltTransformer
          Convert Json to Json using XSLT
 class ObjectToJson
          Converts a java object to a JSON encoded object that can be consumed by other languages such as Javascript or Ruby.
 class XmlToJson
          Convert XML to a JSON string
 

Uses of AbstractTransformer in org.mule.module.rss.transformers
 

Subclasses of AbstractTransformer in org.mule.module.rss.transformers
 class ObjectToRssFeed
          Converts an RSS data representation into a SyndFeed object
 

Uses of AbstractTransformer in org.mule.module.scripting.transformer
 

Subclasses of AbstractTransformer in org.mule.module.scripting.transformer
 class ScriptTransformer
          Runs a script to perform transformation on an object.
 

Uses of AbstractTransformer in org.mule.module.spring.remoting
 

Subclasses of AbstractTransformer in org.mule.module.spring.remoting
 class ObjectToRemoteInvocationResultTransformer
          Converts an Object to a Spring RemoteInvocationResult and then into a byte[].
 class ObjectToRemoteInvocationTransformer
          Transforms a byte[] into an ObjectInputStream and then into a Spring RemoteInvocation instance.
 

Uses of AbstractTransformer in org.mule.module.xml.transformer
 

Subclasses of AbstractTransformer in org.mule.module.xml.transformer
 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 XmlToOutputHandler
           
 class XmlToXMLStreamReader
           
 class XPathExtractor
          Simple transformer for using the JAXP XPath library to extract an XPath value from an XPath expression.
 class XQueryTransformer
          The XQuery Module gives users the ability to perform XQuery transformations on XML messages in Mule
 class XsltTransformer
          XsltTransformer performs an XSLT transform on a DOM (or other XML-ish) object.
 

Uses of AbstractTransformer in org.mule.module.xml.transformer.jaxb
 

Subclasses of AbstractTransformer in org.mule.module.xml.transformer.jaxb
 class JAXBMarshallerTransformer
          Allows marshaling of Java objects to XML using JAXB 2.
 class JAXBUnmarshallerTransformer
          Allows un-marshaling of XML generated by JAXB to a Java object graph.
 

Uses of AbstractTransformer in org.mule.tck.functional
 

Subclasses of AbstractTransformer in org.mule.tck.functional
 class StringAppendTestTransformer
           
 

Uses of AbstractTransformer in org.mule.tck.transformer
 

Subclasses of AbstractTransformer in org.mule.tck.transformer
 class NoActionTransformer
          NoActionTransformer doesn't do any transformation on the source object and returns the source as the result.
 class ValidateResponse
          Throws an exception if the message does not contain "success".
 

Uses of AbstractTransformer in org.mule.transformer
 

Subclasses of AbstractTransformer in org.mule.transformer
 class AbstractDiscoverableTransformer
           
 class AbstractMessageAwareTransformer
          Deprecated.  
 class AbstractMessageTransformer
          AbstractMessageTransformer is a transformer that has a reference to the current message.
 class TransformerChain
          A referencable chain of transformers that can be used as a single transformer
 class TransformerTemplate
          TODO
 

Uses of AbstractTransformer in org.mule.transformer.codec
 

Subclasses of AbstractTransformer in org.mule.transformer.codec
 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 AbstractTransformer in org.mule.transformer.compression
 

Subclasses of AbstractTransformer in org.mule.transformer.compression
 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 will uncompress a byte[] or InputStream
 

Uses of AbstractTransformer in org.mule.transformer.encryption
 

Subclasses of AbstractTransformer in org.mule.transformer.encryption
 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 AbstractTransformer in org.mule.transformer.simple
 

Subclasses of AbstractTransformer in org.mule.transformer.simple
 class AbstractAddVariablePropertyTransformer
           
 class AbstractRemoveVariablePropertyTransformer
           
 class AddAttachmentTransformer
           
 class AddFlowVariableTransformer
           
 class AddPropertyTransformer
           
 class AddSessionVariableTransformer
           
 class AutoTransformer
          A transformer that uses the transform discovery mechanism to convert the message payload.
 class BeanToMap
          Conversts a simple bean object to a Map.
 class ByteArrayToHexString
          Converts a Byte array to a Hex String.
 class ByteArrayToMuleMessage
          TODO
 class ByteArrayToObject
          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.
 class ByteArrayToSerializable
          ByteArrayToSerializable converts a serialized object to its object representation
 class CopyAttachmentsTransformer
           
 class CopyPropertiesTransformer
           
 class DataHandlerToInputStreamTransformer
           
 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 MapToBean
          Creates and object of type getReturnClass() and populates values of a Map as bean properties on the object.
 class MessagePropertiesTransformer
           A configurable message transformer that allows users to add, overwrite, rename and delete properties on the current message.
 class MuleMessageToByteArray
          TODO
 class NumberToString
          NumberToString converts a Number to a String.
 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 ObjectToInputStream
          ObjectToInputStream converts Serializable objects to an InputStream but treats java.lang.String, byte[] and org.mule.api.transport.OutputHandler differently by using their byte[] content rather thqn Serializing them.
 class ObjectToOutputHandler
          ObjectToOutputHandler converts a byte array into a String.
 class ObjectToString
          ObjectToString transformer is useful for debugging.
 class ParseTemplateTransformer
          Loads a template and parses its content to resolve expressions.
 class PropertyEditorTextToValueTransformer
          PropertyEditorTextToValueTransformer adapts a PropertyEditor instance allowing it to be used to transform from a String to another type in Mule
 class PropertyEditorValueToTextTransformer
          PropertyEditorValueToTextTransformer adapts a PropertyEditor instance allowing it to be used to transform from a specific type to a String.
 class RemoveAttachmentTransformer
           
 class RemoveFlowVariableTransformer
           
 class RemovePropertyTransformer
           
 class RemoveSessionVariableTransformer
           
 class SerializableToByteArray
          SerializableToByteArray converts a serializable object or a String to a byte array.
 class SetPayloadTransformer
          Transformer that modifies the payload of the message according to the provided value.
 class StringAppendTransformer
           
 class StringToBoolean
          ByteArrayToSerializable converts a serialized object to its object representation
 class StringToNumber
          StringToNumber converts a String to a Number.
 class StringToObjectArray
          StringToObjectArray converts a String into an object array.
 

Uses of AbstractTransformer in org.mule.transport.email.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.email.transformers
 class EmailMessageToString
          EmailMessageToString extracts the text body of java mail Message and returns a string.
 class MimeMessageToRfc822ByteArray
           
 class ObjectToMimeMessage
          Transforms a Message to a MuleMessage, 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 AbstractTransformer in org.mule.transport.file.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.file.transformers
 class FileToByteArray
          FileToByteArray reads the contents of a file as a byte array.
 class FileToString
          FileToString reads file contents into a string.
 

Uses of AbstractTransformer in org.mule.transport.http.servlet
 

Subclasses of AbstractTransformer in org.mule.transport.http.servlet
 class ServletTransformer
          THIS CLASS IS UNSUPPORTED AND THE IMPLEMENTATION DOES NOT CONFORM TO THE SERVLET SPECIFICATION! With that said, it can be used to make integration with libraries that only support servlets easier.
 

Uses of AbstractTransformer in org.mule.transport.http.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.http.transformers
 class FormTransformer
          Converts HTML forms POSTs into a Map of parameters.
 class HttpClientMethodResponseToObject
          HttpClientMethodResponseToObject transforms a http client response to a DefaultMuleMessage.
 class HttpRequestBodyToParamMap
           
 class HttpResponseToString
          Converts an Http Response object to String.
 class MuleMessageToHttpResponse
          Converts a MuleMessage into an Http response.
 class ObjectToHttpClientMethodRequest
          ObjectToHttpClientMethodRequest transforms a MuleMessage into a HttpClient HttpMethod that represents an HttpRequest.
 class ServletRequestToOutputHandler
          Adds support for converting a HttpServletRequest into an OutputHandler
 

Uses of AbstractTransformer in org.mule.transport.jms.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.jms.transformers
 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 AbstractTransformer in org.mule.transport.servlet.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.servlet.transformers
 class HttpRequestToByteArray
          Converts an HttpServletRequest into an array of bytes by extracting the payload of the request.
 class HttpRequestToInputStream
          Converts a HttpServletRequest into an InputStream.
 class HttpRequestToParameter
           
 class HttpRequestToParameterMap
          Returns a simple Map of the parameters sent with the HTTP Request.
 

Uses of AbstractTransformer in org.mule.transport.sftp.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.sftp.transformers
 class InputStreamToByteArray
          TODO
 

Uses of AbstractTransformer in org.mule.transport.xmpp.transformers
 

Subclasses of AbstractTransformer in org.mule.transport.xmpp.transformers
 class ObjectToXmppPacket
          Creates an Xmpp message packet from a MuleMessage
 class XmppPacketToObject
           
 



Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.