|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AbstractTransformer | |
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.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. |
Uses of AbstractTransformer in org.mule.examples.loanbroker.transformers |
Subclasses of AbstractTransformer in org.mule.examples.loanbroker.transformers | |
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 AbstractTransformer in org.mule.extras.client |
Subclasses of AbstractTransformer in org.mule.extras.client | |
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 AbstractTransformer in org.mule.extras.spring.remoting |
Subclasses of AbstractTransformer in org.mule.extras.spring.remoting | |
class |
ObjectToRemoteInvocationResultTransformer
|
class |
ObjectToRemoteInvocationTransformer
|
Uses of AbstractTransformer in org.mule.providers.email.transformers |
Subclasses of AbstractTransformer in org.mule.providers.email.transformers | |
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 AbstractTransformer in org.mule.providers.file.transformers |
Subclasses of AbstractTransformer in org.mule.providers.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.providers.http.transformers |
Subclasses of AbstractTransformer in org.mule.providers.http.transformers | |
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 AbstractTransformer in org.mule.providers.jms.transformers |
Subclasses of AbstractTransformer in org.mule.providers.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.providers.oracle.jms.transformers |
Subclasses of AbstractTransformer in org.mule.providers.oracle.jms.transformers | |
class |
StringToXMLMessage
Transformer for use with the Oracle Jms Connector. |
Uses of AbstractTransformer in org.mule.providers.soap.transformers |
Subclasses of AbstractTransformer in org.mule.providers.soap.transformers | |
class |
HttpRequestToSoapRequest
A simple transformer for converting an Http GET request into a SOAP request. |
Uses of AbstractTransformer in org.mule.providers.xmpp.transformers |
Subclasses of AbstractTransformer in org.mule.providers.xmpp.transformers | |
class |
ObjectToXmppPacket
Creates an Xmpp message packet from a UMOMessage |
class |
XmppPacketToObject
|
Uses of AbstractTransformer in org.mule.samples.errorhandler |
Subclasses of AbstractTransformer in org.mule.samples.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.samples.hello |
Subclasses of AbstractTransformer in org.mule.samples.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.tck.testmodels.fruit |
Subclasses of AbstractTransformer in org.mule.tck.testmodels.fruit | |
class |
ObjectToFruitLover
|
Uses of AbstractTransformer in org.mule.tck.testmodels.mule |
Subclasses of AbstractTransformer in org.mule.tck.testmodels.mule | |
class |
TestCompressionTransformer
|
Uses of AbstractTransformer in org.mule.transformers |
Subclasses of AbstractTransformer in org.mule.transformers | |
class |
AbstractEventAwareTransformer
AbstractEventAwareTransformer is a transformer that has a reference
to the current message. |
class |
NoActionTransformer
NoActionTransformer doesn't do any transformation on the source
object and returns the source as the result. |
Uses of AbstractTransformer in org.mule.transformers.codec |
Subclasses of AbstractTransformer in org.mule.transformers.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.transformers.compression |
Subclasses of AbstractTransformer in org.mule.transformers.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 TODO |
Uses of AbstractTransformer in org.mule.transformers.encryption |
Subclasses of AbstractTransformer in org.mule.transformers.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.transformers.script |
Subclasses of AbstractTransformer in org.mule.transformers.script | |
class |
ScriptTransformer
Runs a script to perform transformation on an object. |
Uses of AbstractTransformer in org.mule.transformers.simple |
Subclasses of AbstractTransformer in org.mule.transformers.simple | |
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 AbstractTransformer in org.mule.transformers.xml |
Subclasses of AbstractTransformer in org.mule.transformers.xml | |
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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |