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

com.github.linushp.commons.ebus.Event Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.github.linushp.commons.ebus;

public class Event {
    private String name;

    private Object data;

    public Event(String name, Object data) {
        this.name = name;
        this.data = data;
    }

    public Event(String name) {
        this.name = name;
    }

    public Event() {
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy