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

com.jnngl.totalcomputers.sound.SoundWebSocketSession Maven / Gradle / Ivy

package com.jnngl.totalcomputers.sound;

@Deprecated
public class SoundWebSocketSession {
    @Deprecated
    private String host, name;

    @Deprecated
    public SoundWebSocketSession(String host) {
        this.host = host;
    }

    @Deprecated
    public String getName() {
        return name;
    }

    @Deprecated
    public String getHost() {
        return host;
    }

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

    @Deprecated
    @Override
    public String toString() {
        return "[SoundWebSocketSession: host="+host+", name="+name+"]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy