org.enodeframework.queue.publishableexceptions.PublishableExceptionMessage 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.publishableexceptions;
import java.util.Date;
import java.util.Map;
/**
* @author [email protected]
*/
public class PublishableExceptionMessage {
private String uniqueId;
private String exceptionType;
private Date timestamp;
private Map serializableInfo;
private Map items;
public String getUniqueId() {
return uniqueId;
}
public void setUniqueId(String uniqueId) {
this.uniqueId = uniqueId;
}
public String getExceptionType() {
return exceptionType;
}
public void setExceptionType(String exceptionType) {
this.exceptionType = exceptionType;
}
public Date getTimestamp() {
return timestamp;
}
public void setTimestamp(Date timestamp) {
this.timestamp = timestamp;
}
public Map getSerializableInfo() {
return serializableInfo;
}
public void setSerializableInfo(Map serializableInfo) {
this.serializableInfo = serializableInfo;
}
public Map getItems() {
return items;
}
public void setItems(Map items) {
this.items = items;
}
}