All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.endpoint.direct.DirectEndpointConfiguration Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.consol.citrus.endpoint.direct;

import com.consol.citrus.endpoint.AbstractEndpointConfiguration;
import com.consol.citrus.message.MessageQueue;

/**
 * @author Christoph Deppisch
 */
public class DirectEndpointConfiguration extends AbstractEndpointConfiguration {

    /** Destination queue */
    private MessageQueue queue;

    /** Destination queue name */
    private String queueName;

    /**
     * Set the message queue.
     * @param queue the queue to set
     */
    public void setQueue(MessageQueue queue) {
        this.queue = queue;
    }

    /**
     * Sets the destination queue name.
     * @param queueName the queueName to set
     */
    public void setQueueName(String queueName) {
        this.queueName = queueName;
    }

    /**
     * Gets the queue.
     * @return the queue
     */
    public MessageQueue getQueue() {
        return queue;
    }

    /**
     * Gets the queueName.
     * @return the queueName
     */
    public String getQueueName() {
        return queueName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy