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

com.rbmhtechnology.vind.monitoring.model.session.SimpleSession Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.rbmhtechnology.vind.monitoring.model.session;

/**
 * @author Thomas Kurz ([email protected])
 * @since 13.07.16.
 */
public class SimpleSession implements Session {

    public String sessionId;

    public SimpleSession(String sessionId) {
        this.sessionId = sessionId;
    }

    @Override
    public String getSessionId() {
        return sessionId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy