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

org.enodeframework.queue.publishableexceptions.PublishableExceptionMessage Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy