Package org.jitterbit.integration.jms

Examples of org.jitterbit.integration.jms.DestinationType


     * @param type
     *            one of <code>JmsDestinationType.QUEUE</code> or
     *            <code>JmsDestinationType.TOPIC</code>.
     */
    public void setDestinationType(DestinationType type) {
        DestinationType old;
        synchronized (getDataLock()) {
            old = getDestinationType();
            setProperty(DESTINATION_TYPE, type.name());
        }
        if (old != type) {
View Full Code Here


        ui.requestFocus();
    }

    @Override
    public void applyTo(JmsLocation loc) {
        DestinationType type = buttons.getSelection();
        if (type == null) {
            type = JmsLocation.DEFAULT_TYPE;
        }
        loc.setDestinationType(type);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.jms.DestinationType

Copyright © 2018 www.massapicom. 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.