Package com.opentok
Class Sip
java.lang.Object
com.opentok.Sip
public class Sip
extends java.lang.Object
An object representing an OpenTok SIP call.
Do not call the new()
constructor. To start a SIP call, call the
OpenTok.dial()
method.
-
Method Summary
Modifier and Type Method Description java.lang.String
getConnectionId()
The connection ID of the audio-only stream that is put into an OpenTok Session.java.lang.String
getId()
The unique ID of the SIP conference.java.lang.String
getStreamId()
The stream ID of the audio-only stream that is put into an OpenTok Session.static Sip
makeSip()
Used internally.
-
Method Details
-
makeSip
Used internally. Use theOpenTok.dial()
method to start a SIP call. -
getId
public java.lang.String getId()The unique ID of the SIP conference. -
getConnectionId
public java.lang.String getConnectionId()The connection ID of the audio-only stream that is put into an OpenTok Session. -
getStreamId
public java.lang.String getStreamId()The stream ID of the audio-only stream that is put into an OpenTok Session.
-