public class RoomSystemDevice
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ROOMDEVICE_BOTH
H.323 device and SIP.
|
static int |
ROOMDEVICE_H323
H.323 device.
|
static int |
ROOMDEVICE_SIP
SIP.
|
static int |
ROOMENCRYPT_AUTO
Meeting room system is encrypted automatically.
|
static int |
ROOMENCRYPT_NO
Meeting room system is not encrypted.
|
static int |
ROOMENCRYPT_YES
Meeting room system is encrypted.
|
Constructor and Description |
---|
RoomSystemDevice() |
RoomSystemDevice(java.lang.String mName,
java.lang.String mIp,
java.lang.String mE164num,
int mDeviceType,
int mEncrypt)
Meeting room system device.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAddress()
Get device address of room system.
|
int |
getDeviceType()
Get device type.
|
java.lang.String |
getDisplayName()
Get device name of room system.
|
java.lang.String |
getE164num()
Get E.164 number.
|
int |
getEncrypt()
Get encryption type.
|
java.lang.String |
getIp()
Get device IP of room system.
|
java.lang.String |
getName()
Get device name of room system.
|
void |
setDeviceType(int deviceType)
Set device type.
|
void |
setE164num(java.lang.String e164num)
Set E.164 number.
|
void |
setEncrypt(int encrypt)
Set encryption type.
|
void |
setIp(java.lang.String ip)
Set device IP of room system.
|
void |
setName(java.lang.String name)
Set device name of room system.
|
public static final int ROOMDEVICE_H323
public static final int ROOMDEVICE_SIP
public static final int ROOMDEVICE_BOTH
public static final int ROOMENCRYPT_NO
public static final int ROOMENCRYPT_YES
public static final int ROOMENCRYPT_AUTO
public RoomSystemDevice()
public RoomSystemDevice(java.lang.String mName, java.lang.String mIp, java.lang.String mE164num, int mDeviceType, int mEncrypt)
mName
- The device name of room system.mIp
- The device IP of room system.mE164num
- E.164 numbers.mDeviceType
- Device type of room system.mEncrypt
- Encryption types of room system, ROOMENCRYPT_NO/ROOMENCRYPT_YES/ROOMENCRYPT_AUTO.public java.lang.String getName()
public void setName(java.lang.String name)
name
- The device name.public java.lang.String getIp()
public void setIp(java.lang.String ip)
ip
- The device IP of room system.public java.lang.String getE164num()
public void setE164num(java.lang.String e164num)
e164num
- E.164 number.public int getDeviceType()
public void setDeviceType(int deviceType)
deviceType
- Device type:ROOMENCRYPT_NO/ROOMENCRYPT_YES/ROOMDEVICE_BOTH.public int getEncrypt()
public void setEncrypt(int encrypt)
encrypt
- Encryption type:ROOMDEVICE_H323/ROOMDEVICE_SIP/ROOMENCRYPT_AUTO.public java.lang.String getAddress()
public java.lang.String getDisplayName()