com.opentok.api.OpenTokSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentok-java-sdk Show documentation
Show all versions of opentok-java-sdk Show documentation
The Java library to interact with the Opentok platform
The newest version!
/*!
* OpenTok Java Library
* http://www.tokbox.com/
*
* Copyright 2010, TokBox, Inc.
*
*/
package com.opentok.api;
public class OpenTokSession {
public String session_id;
public OpenTokSession(String session_id) {
this.session_id = session_id;
}
public String getSessionId() {
return this.session_id;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy