Example usage for org.springframework.jms.support.converter SimpleMessageConverter subclass-usage

List of usage examples for org.springframework.jms.support.converter SimpleMessageConverter subclass-usage

Introduction

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

Usage

From source file org.dataminx.dts.ws.jms.DtsWsMessageConverter.java

/**
 * This class converts an incoming JMS message into a JobEventUpdateRequest object.
 *
 * @author Alex Arana
 * @author Gerson Galang
 */

From source file org.nebulaframework.grid.cluster.manager.services.jobs.remote.RemoteJobRequestMessageConverter.java

/**
 * A JMS {@code MessageConverter} which appends meta-data to
 * {@code RemoteClusterJobService} messages. This converter
 * attaches a property to each JMS Message sent by the service
 * to indicate the target Cluster ID. This ensures that the
 * message is dispatched to the intended cluster's RemoteJobService

From source file org.btc4j.jms.BtcMessageConverter.java

@Component
public class BtcMessageConverter extends SimpleMessageConverter {

    @Override
    public Object fromMessage(Message object) throws JMSException, MessageConversionException {
        if ((object != null) && (object instanceof TextMessage)) {