Package com.opentok
Class SipProperties
- java.lang.Object
-
- com.opentok.SipProperties
-
public class SipProperties extends java.lang.Object
Defines values for theproperties
parameter of theOpenTok.dial(String, String, SipProperties)
method.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SipProperties.Builder
Use this class to create a SipProperties object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
from()
Returns the from value.java.lang.String
headersJsonStartingWithXDash()
Returns the SIP headers as JSON.boolean
observeForceMute()
Returns the observeForceMute value (true
orfalse
).java.lang.String
password()
Returns the password.boolean
secure()
Returns the secure value (true
orfalse
).java.lang.String
sipUri()
Returns the SIP URI.java.lang.String
userName()
Returns the user name.boolean
video()
Return the video value (true
orfalse
).
-
-
-
Method Detail
-
sipUri
public java.lang.String sipUri()
Returns the SIP URI.
-
from
public java.lang.String from()
Returns the from value.
-
userName
public java.lang.String userName()
Returns the user name.
-
password
public java.lang.String password()
Returns the password.
-
headersJsonStartingWithXDash
public java.lang.String headersJsonStartingWithXDash()
Returns the SIP headers as JSON.
-
secure
public boolean secure()
Returns the secure value (true
orfalse
).
-
video
public boolean video()
Return the video value (true
orfalse
).
-
observeForceMute
public boolean observeForceMute()
Returns the observeForceMute value (true
orfalse
).
-
-