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

org.enodeframework.queue.command.CommandMessage Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package org.enodeframework.queue.command;

import org.enodeframework.common.io.ReplySocketAddress;

import java.io.Serializable;

/**
 * @author [email protected]
 */
public class CommandMessage implements Serializable {
    private String commandType;
    private String commandData;
    private ReplySocketAddress replyAddress;

    public String getCommandType() {
        return commandType;
    }

    public void setCommandType(String commandType) {
        this.commandType = commandType;
    }

    public String getCommandData() {
        return commandData;
    }

    public void setCommandData(String commandData) {
        this.commandData = commandData;
    }

    public ReplySocketAddress getReplyAddress() {
        return replyAddress;
    }

    public void setReplyAddress(ReplySocketAddress replyAddress) {
        this.replyAddress = replyAddress;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy