Class Device
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.Device
-
- All Implemented Interfaces:
Serializable
public class Device extends Object implements Serializable
An API model that represents a device.- Since:
- 10.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Device()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Get the device identifier.StringgetTarget()Get the device target.StringgetType()Get the type of the device.voidsetId(String id)Set the device identifier.voidsetTarget(String target)Set the device target.voidsetType(String type)Set the type of the device.
-
-
-
Method Detail
-
getId
public String getId()
Get the device identifier.
-
setId
public void setId(String id)
Set the device identifier.
-
getType
public String getType()
Get the type of the device.
-
setType
public void setType(String type)
Set the type of the device.
-
getTarget
public String getTarget()
Get the device target. Where possible, the target should be masked.
-
setTarget
public void setTarget(String target)
Set the device target.
-
-