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

org.openfeed.client.api.OpenfeedEvent Maven / Gradle / Ivy

The newest version!
package org.openfeed.client.api;


public class OpenfeedEvent {
    public enum EventType {
        Connected, Disconnected, Login, Logout;
    };

    private EventType type;
    private String message;

    public OpenfeedEvent(EventType type, String message) {
        super();
        this.type = type;
        this.message = message;
    }

    public EventType getType() {
        return type;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy