java.lang.Object | ||
↳ | com.datalogic.device.configuration.SerializableBlob | |
↳ | com.datalogic.device.configuration.BluetoothSilentPairingWhitelisting |
BluetoothSilentPairingWhitelisting
implements the class that manages the silent pairing devices whitelisting.
The class is managed by the ConfigurationManager BlobProperty BT_SILENT_PAIRING_WHITELISTING
.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
BluetoothSilentPairingWhitelisting.IdentifierType |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructor
| |||||||||||
Constructor
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Whitelist a new device identified with the given MAC address.
| |||||||||||
Whitelist a new device identified with the given name.
| |||||||||||
Whitelist a new device identified with the given OUI ID.
| |||||||||||
Revoke all whitelisted devices.
| |||||||||||
Retrieve a map containing all whitelisted devices.
| |||||||||||
Retrieve a list containing the devices whitelisted by MAC address.
| |||||||||||
Retrieve a list containing the devices whitelisted by name.
| |||||||||||
Retrieve a list containing the devices whitelisted by OUI identifier.
| |||||||||||
Check if a device identified with the given MAC Address is whitelisted.
| |||||||||||
Check if a device identified with the given name is whitelisted.
| |||||||||||
Check if a device identified with the given OUI ID is whitelisted.
| |||||||||||
Check if a device identified with the given name, MAC address or OUI ID is whitelisted.
| |||||||||||
Remove from the whitelist a device with the given MAC address.
| |||||||||||
Remove from the whitelist a device with the given name.
| |||||||||||
Remove from the whitelist a device with the given OUI ID.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.datalogic.device.configuration.SerializableBlob
| |||||||||||
From class
java.lang.Object
|
Constructor
value | Map
|
---|
Whitelist a new device identified with the given MAC address. If the entry already exists, the value will not be updated.
macAddress | String |
---|
boolean
retrieves true if the entry has been successfully added to the whitelist; otherwise, false.
Whitelist a new device identified with the given name. If the entry already exists, the value will not be updated.
deviceName | String |
---|
boolean
retrieves true if the entry has been successfully added to the whitelist; otherwise, false.
Whitelist a new device identified with the given OUI ID. If the entry already exists, the value will not be updated.
ouiIdentifier | String |
---|
boolean
retrieves true if the entry has been successfully added to the whitelist; otherwise, false.
Retrieve a map containing all whitelisted devices.
Map
.
Retrieve a list containing the devices whitelisted by MAC address.
List
.
Retrieve a list containing the devices whitelisted by name.
List
.
Retrieve a list containing the devices whitelisted by OUI identifier.
List
.
Check if a device identified with the given MAC Address is whitelisted.
macAddress | String |
---|
boolean
tells if the device is whitelisted.
Check if a device identified with the given name is whitelisted.
deviceName | String |
---|
boolean
tells if the device is whitelisted.
Check if a device identified with the given OUI ID is whitelisted.
ouiIdentifier | String |
---|
boolean
tells if the device is whitelisted.
Check if a device identified with the given name, MAC address or OUI ID is whitelisted. The OUI ID is retrieved from the MAC address.
macAddress | String |
---|---|
deviceName | String |
boolean
tells if the device is whitelisted.
Remove from the whitelist a device with the given MAC address. If the entry doesn't exists, nothing happens and the method returns false.
macAddress | String |
---|
boolean
retrieves true if the entry has been successfully removed from the whitelist; otherwise, false.
Remove from the whitelist a device with the given name. If the entry doesn't exists, nothing happens and the method returns false.
deviceName | String |
---|
boolean
retrieves true if the entry has been successfully removed from the whitelist; otherwise, false.
Remove from the whitelist a device with the given OUI ID. If the entry doesn't exists, nothing happens and the method returns false.
ouiIdentifier | String |
---|
boolean
retrieves true if the entry has been successfully removed from the whitelist; otherwise, false.