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

pro.jk.ejoker.queue.domainEvent.DomainEventHandledMessage Maven / Gradle / Ivy

package pro.jk.ejoker.queue.domainEvent;

public class DomainEventHandledMessage {

	private String commandId;
	
	private String aggregateRootId;
	
	private String commandResult;
	
	public String getCommandId() {
		return commandId;
	}
	
	public void setCommandId(String commandId) {
		this.commandId = commandId;
	}
	
	public String getAggregateRootId() {
		return aggregateRootId;
	}
	
	public void setAggregateRootId(String aggregateRootId) {
		this.aggregateRootId = aggregateRootId;
	}
	
	public String getCommandResult() {
		return commandResult;
	}
	
	public void setCommandResult(String commandResult) {
		this.commandResult = commandResult;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy