Class IceServer
- Object
-
- IceServer
-
public final class IceServer extends Object
Describes an ICE Server
-
-
Constructor Summary
Constructors Constructor Description IceServer()
Creates a new instance with a default configuration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.String
getPassword()
Password for the ICE servers if credential infomation is needed for the serverString
getRealm()
Realm for the ICE serversint
getTcpPort()
TCP port for the ICE serversint
getUdpPort()
UDP port for the ICE serversList<String>
getUrls()
Get urls for the ICE serversString
getUsername()
Username for the ICE servers if credential infomation is needed for the serverIceServer
setPassword(String value)
Password for the ICE servers if credential infomation is needed for the serverIceServer
setRealm(String value)
Realm for the ICE serversIceServer
setTcpPort(int value)
TCP port for the ICE serversIceServer
setUdpPort(int value)
UDP port for the ICE serversIceServer
setUrls(List<String> value)
Set urls for the ICE serversIceServer
setUsername(String value)
Username for the ICE servers if credential infomation is needed for the server
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getRealm
public String getRealm()
Realm for the ICE servers
-
setRealm
public IceServer setRealm(String value)
Realm for the ICE servers- Parameters:
value
- The new value.
-
getTcpPort
public int getTcpPort()
TCP port for the ICE servers
-
setTcpPort
public IceServer setTcpPort(int value)
TCP port for the ICE servers- Parameters:
value
- The new value.
-
getUdpPort
public int getUdpPort()
UDP port for the ICE servers
-
setUdpPort
public IceServer setUdpPort(int value)
UDP port for the ICE servers- Parameters:
value
- The new value.
-
getUsername
public String getUsername()
Username for the ICE servers if credential infomation is needed for the server
-
setUsername
public IceServer setUsername(String value)
Username for the ICE servers if credential infomation is needed for the server- Parameters:
value
- The new value.
-
getPassword
public String getPassword()
Password for the ICE servers if credential infomation is needed for the server
-
setPassword
public IceServer setPassword(String value)
Password for the ICE servers if credential infomation is needed for the server- Parameters:
value
- The new value.
-
getUrls
public List<String> getUrls()
Get urls for the ICE servers
-
setUrls
public IceServer setUrls(List<String> value)
Set urls for the ICE servers
-
-