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

org.nustaq.kontraktor.apputil.SessionEvent Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.nustaq.kontraktor.apputil;

import java.io.Serializable;

public class SessionEvent implements Serializable {
    String type;
    Object data;

    public SessionEvent(String type, Object data) {
        this.type = type;
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy