类 DeviceKey
- java.lang.Object
-
- com.baidubce.services.iothisk.device.model.DeviceKey
-
public class DeviceKey extends Object
Represents device key, corresponding to specified device
-
-
构造器概要
构造器 构造器 说明 DeviceKey()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetDeviceId()Get device unique idSecureElementgetSe()Get device secure element crypto objectStringgetSeId()Get secure element idSeTypegetSeType()Get secure element typevoidsetDeviceId(String deviceId)Set device unique idvoidsetSe(SecureElement se)Set device secure element crypto objectvoidsetSeId(String seId)Set secure element idvoidsetSeType(SeType seType)Set secure element type
-
-
-
方法详细资料
-
getDeviceId
public String getDeviceId()
Get device unique id- 返回:
- device unique id
-
setDeviceId
public void setDeviceId(String deviceId)
Set device unique id- 参数:
deviceId- device unique id
-
getSeId
public String getSeId()
Get secure element id- 返回:
- secure element id
-
setSeId
public void setSeId(String seId)
Set secure element id- 参数:
seId- secure element id
-
getSeType
public SeType getSeType()
Get secure element type- 返回:
- secure element type
-
setSeType
public void setSeType(SeType seType)
Set secure element type- 参数:
seType- secure element type
-
getSe
public SecureElement getSe()
Get device secure element crypto object- 返回:
- device secure element crypto object
-
setSe
public void setSe(SecureElement se)
Set device secure element crypto object- 参数:
se- device secure element crypto object
-
-