Example usage for org.springframework.jms.support.converter MessageConverter interface-usage

List of usage examples for org.springframework.jms.support.converter MessageConverter interface-usage

Introduction

In this page you can find the example usage for org.springframework.jms.support.converter MessageConverter interface-usage.

Usage

From source file com.oracle.demo.ops.event.spring.converter.ParcelLogEventMessageConverter.java

/**
  * **************************************************************************
 * <p/>
 * This code is provided for example purposes only.  Oracle does not assume
 * any responsibility or liability for the consequences of using this code.
 * If you choose to use this code for any reason, including but not limited

From source file pl.edu.amu.lasuch.model.ProductConverter.java

/**
 *
 * @author Uczelnia
 */
@Component("productConverter")
public class ProductConverter implements MessageConverter {

From source file com.atlantbh.jmeter.plugins.jmstools.BinaryMessageConverter.java

public class BinaryMessageConverter implements MessageConverter {

    private Map<String, String> messageProperties;

    public Map<String, String> getMessageProperties() {
        return messageProperties;

From source file org.marketcetera.jms.JMSSerMessageConverter.java

/**
 * Serializes objects using Java serialization to be able to send them over JMS.
 * This class is not meant to be used by clients of this package.
 *
 * @author anshul@marketcetera.com
 * @version $Id$

From source file org.marketcetera.client.jms.JMSMessageConverter.java

/**
 * Converts trading messages to be able to send them over JMS.
 * This class is not meant to be used by clients of this package.
 *
 * @author anshul@marketcetera.com
 * @version $Id$

From source file com.kinglcc.spring.jms.core.converter.JmsMessageConverter.java

/**
 * JmsMessageConverter
 * <pre>
 * support {@link #canConvertTo(Object)} and {@link #canConvertFrom(Message)}
 * </pre>
 *

From source file nh.examples.springintegration.order.utils.XmlJmsMessageConverter.java

/**
 * @author Nils Hartmann (nils@nilshartmann.net)
 * 
 */
public class XmlJmsMessageConverter implements MessageConverter {

From source file org.marketcetera.client.jms.JMSXMLMessageConverter.java

/**
 * Converts messaging objects to an XML representation that can be
 * sent over JMS.  This class is not meant to be used by clients of
 * this package.
 *
 * @author anshul@marketcetera.com

From source file org.jboss.poc.camelblob.BlobMessageConverter.java

public class BlobMessageConverter implements MessageConverter {

    @Override
    public Message toMessage(Object object, Session session) throws JMSException, MessageConversionException {
        if (session instanceof PooledSession) {
            session = ((PooledSession) session).getInternalSession();

From source file org.fusesource.camel.util.BlobMessageConverter.java

/**
 * Converts an InputStream into a BlobMessage
 * 
 * @author Josh Reagan, Red Hat NA
 *
 */