Package org.logicblaze.lingo.jms

Source Code of org.logicblaze.lingo.jms.JmsXStreamTest

package org.logicblaze.lingo.jms;

import org.logicblaze.lingo.jms.marshall.XStreamMarshaller;

import javax.jms.JMSException;

/**
* @version $Revision: 1.1 $
*/
public class JmsXStreamTest extends JmsMultiplexingRemotingTest {

    protected void configure(JmsServiceExporter exporter) throws Exception {
        exporter.setMarshaller(new XStreamMarshaller());
        super.configure(exporter);
    }

    protected void configure(JmsProxyFactoryBean pfb) throws JMSException {
        pfb.setMarshaller(new XStreamMarshaller());
        super.configure(pfb);
    }
}
TOP

Related Classes of org.logicblaze.lingo.jms.JmsXStreamTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.