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

co.com.sofka.infraestructure.bus.notification.Notification Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package co.com.sofka.infraestructure.bus.notification;


import java.util.Date;

public class Notification {
    private String origin;
    private String body;
    private Date occurredOn;
    private String typeName;

    public Notification() {
    }

    public Notification(String origin, String typeName, Date occurredOn, String body) {
        this.origin = origin;
        this.body = body;
        this.occurredOn = occurredOn;
        this.typeName = typeName;
    }

    public String getOrigin() {
        return origin;
    }

    public String getBody() {
        return body;
    }

    public Date getOccurredOn() {
        return occurredOn;
    }

    public String getTypeName() {
        return typeName;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy