public static class

SYSTEM.Version

extends Object
java.lang.Object
   ↳ com.datalogic.device.info.SYSTEM.Version

Class Overview

The Version class contains strings and constants used for values in the ACTION_DEVICE_INFO Intent.

Summary

Constants
String ACTION_DEVICE_INFO Broadcast Action: This is a sticky broadcast containing the device identification number, name and other information about the terminal.
String EXTRA_DEVICE_ID Extra for ACTION_DEVICE_INFO: integer containing the device ID number.
String EXTRA_DEVICE_NAME Extra for ACTION_DEVICE_INFO: String containing the device name.
String EXTRA_FW_VERSION Extra for ACTION_DEVICE_INFO: String containing the device firmware version.
String EXTRA_HW_REVISION Extra for ACTION_DEVICE_INFO: integer containing the device hardware revision.
String EXTRA_PRODUCT_NUMBER Extra for ACTION_DEVICE_INFO: String containing the device's product number.
String EXTRA_SCAN_ENGINE Extra for ACTION_DEVICE_INFO: String containing the device's scan engine module ID.
String EXTRA_SDK_VERSION Extra for ACTION_DEVICE_INFO: String containing the device Datalogic SDK version.
String EXTRA_SERIAL_NUMBER Extra for ACTION_DEVICE_INFO: String containing the device's serial number.
Public Constructors
Version()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String ACTION_DEVICE_INFO

Added in revision 1

Broadcast Action: This is a sticky broadcast containing the device identification number, name and other information about the terminal.

You can not receive this through components declared in manifests, only by explicitly registering for it with Context.registerReceiver(BroadcastReceiver, IntentFilter)

This is a protected intent that can only be sent by the system.

Constant Value: "com.datalogic.device.info.action.DEVICE_INFO"

public static final String EXTRA_DEVICE_ID

Added in revision 1

Extra for ACTION_DEVICE_INFO: integer containing the device ID number.

Constant Value: "device_id"

public static final String EXTRA_DEVICE_NAME

Added in revision 1

Extra for ACTION_DEVICE_INFO: String containing the device name.

Constant Value: "device_name"

public static final String EXTRA_FW_VERSION

Added in revision 1

Extra for ACTION_DEVICE_INFO: String containing the device firmware version.

Constant Value: "device_fw_version"

public static final String EXTRA_HW_REVISION

Added in revision 1

Extra for ACTION_DEVICE_INFO: integer containing the device hardware revision.

Constant Value: "device_hw_revision"

public static final String EXTRA_PRODUCT_NUMBER

Added in revision 28

Extra for ACTION_DEVICE_INFO: String containing the device's product number.

Constant Value: "product_number"

public static final String EXTRA_SCAN_ENGINE

Added in revision 1

Extra for ACTION_DEVICE_INFO: String containing the device's scan engine module ID.

Constant Value: "scan_engine_model"

public static final String EXTRA_SDK_VERSION

Added in revision 1

Extra for ACTION_DEVICE_INFO: String containing the device Datalogic SDK version.

Constant Value: "sdk_version"

public static final String EXTRA_SERIAL_NUMBER

Added in revision 28

Extra for ACTION_DEVICE_INFO: String containing the device's serial number.

Constant Value: "serial_number"

Public Constructors

public Version ()