Class DeviceBinding
java.lang.Object
com.thalesgroup.gemalto.d1.digitalcard.DeviceBinding
Device Binding information.
Represents the binding of a digital card to a specific device.
Contains information about the binding reference, device name, and binding status.
- Since:
- 4.3.0
-
Constructor Summary
ConstructorsConstructorDescriptionDeviceBinding(String bindingReference, String deviceName, DeviceBindingStatus bindingStatus) Public Constructor for DeviceBinding. -
Method Summary
Modifier and TypeMethodDescriptionGets the binding reference.Gets the binding status.Gets the device name.
-
Constructor Details
-
DeviceBinding
public DeviceBinding(@Nullable String bindingReference, @Nullable String deviceName, @Nullable DeviceBindingStatus bindingStatus) Public Constructor for DeviceBinding. Creates a new DeviceBinding instance with the specified binding reference, device name, and binding status.- Parameters:
bindingReference- The unique reference identifier for this binding.deviceName- The name of the device associated with this binding.bindingStatus- The current status of the binding:DeviceBindingStatus.APPROVED,DeviceBindingStatus.DECLINED, orDeviceBindingStatus.CHALLENGED.- Since:
- 4.3.0
-
-
Method Details
-
getBindingReference
Gets the binding reference. The binding reference is a unique identifier for this device binding.- Returns:
- The binding reference which may be null.
- Since:
- 4.3.0
-
getDeviceName
Gets the device name. Returns the name of the device associated with this binding.- Returns:
- The device name which may be null.
- Since:
- 4.3.0
-
getBindingStatus
Gets the binding status. Returns the current status of the device binding, which can be APPROVED, DECLINED, or CHALLENGED.- Returns:
- The binding status which may be null.
- Since:
- 4.3.0
-