org.enodeframework.queue.command.CommandMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
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;
}
}