
ibt.ortc.extensibility.ConnectionProtocol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messaging Show documentation
Show all versions of messaging Show documentation
Realtime Cloud Messaging (ORTC) SDK for Java
package ibt.ortc.extensibility;
/**
* Enumerates the websocket connection protocols
*
* @version 2.1.0 27 Mar 2013
* @author IBT
*/
public enum ConnectionProtocol {
/**
* Represents a secure connection
*/
Secure("wss"),
/**
* Represents a unsecure connection
*/
Unsecure("ws");
private ConnectionProtocol(String protocol){
this.protocol = protocol;
}
private String protocol;
public String getProtocol(){
return this.protocol;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy