2009-10-01 1.2.0

org.eclipse.soda.dk.rfid.inventory.profile.service
Interface RfidInventoryProfileService

All Known Implementing Classes:
RfidBaseProfile, RfidInventoryProfile, RfidInventoryProfileTester

public interface RfidInventoryProfileService

The RFID Inventory Profile controls Radio Frequency Identification (RFID) tag reading, tag filtering, and aggregation reporting. This profile supports starting and stopping the reading mode, providing tag data in a common format, filtering tags as duplicates or by interest masks, collecting tags into an aggregation report, and marking tag reports with meta data called data extensions. The RfidInventoryProfile can be configured to trigger reading, filtering, and aggregating behavior based on events published by the GpioProfile and ControlProfile. While the main focus of this profile is RFID related devices, this profile can also be implemented by other kinds of devices with "tag"s. For example, Bar Code Readers can implement this profile. The device service interface defines the service to be registered for the RfidInventoryProfile device.

The following measurements are supported:

TagReadingExpression The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
TagReading The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
TagAggregatingExpression The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
TagAggregating The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
TagMaskSetting The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon.
TagFilterExpression The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport".
AggregationFilterExpression The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter.
AggregationFinalFilterExpression The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter.
DuplicateFilteringExpression The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
DuplicateFiltering The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
AggregationMaskSetting The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon.
DataExtensions The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value.
TagPosition The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value.
TagAntennaReportLevel The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.
ReadOperations The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>
ReadOperationsCount The ReadOperationsCount measurement defines the number of read operations supported by this profile.
AntennaCount The "AntennaCount" is maximum number of antennas supported by this reader.
SuperCacheMaximumSize The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used.
ConfidenceScript The "ConfidenceScript" is script to compute the "confidence" value.

The following signals are supported:

TagReport The "TagReport" is a signal containing tag data in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details.
TagAggregationReport The "TagAggregationReport" is a signal containing a collection of tag data in a map structure. The report can contain zero to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details.

The list of exported services:

Since:
1.0
Version:
1.2.0
See Also:
RfidInventoryProfileService, See the following specification(s) for more details:

Title: EPCglobal Low Level Reader Protocol (LLRP)
URL: http://www.epcglobalinc.org/standards/llrp
Version: 1.0.1
Date: August 13, 2007
Vendor: EPCglobal
Comment: Ratified

Title: EPCglobal Application Level Events (ALE) Specification
URL: http://www.epcglobalinc.org/standards/ale/
Version: 1.1
Date: February 27, 2008
Vendor: EPCglobal
Comment: Ratified

Title: EPCglobal Low Level Reader Protocol (LLRP)
URL: http://www.epcglobalinc.org/standards/llrp
Version: 1.0.1
Date: August 13, 2007
Vendor: EPCglobal
Comment: Ratified

Title: EPCglobal Application Level Events (ALE) Specification
URL: http://www.epcglobalinc.org/standards/ale/
Version: 1.1
Date: February 27, 2008
Vendor: EPCglobal
Comment: Ratified

Field Summary
static java.lang.String ACCESS_PWD_DATA_KEY
          The value stored at the "accessPwd" key of the read-event map is the optional access password value.
static java.lang.String AFI_DATA_KEY
          The value stored at the "afi" key of the read-event map is the optional ISO Application Family Identifier (AFI) value.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_EXTERNAL_KEY
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_GET_EXTERNAL_KEY
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_KEY
          Configuration AGGREGATION_FILTER_EXPRESSION_KEY key.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_READ_EXTERNAL_KEY
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_EXTERNAL_KEY
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_GET_EXTERNAL_KEY
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_KEY
          Configuration AGGREGATION_FINAL_FILTER_EXPRESSION_KEY key.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_READ_EXTERNAL_KEY
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AGGREGATION_MASK_SETTING_ERROR_EXTERNAL_KEY
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String AGGREGATION_MASK_SETTING_EXTERNAL_KEY
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String AGGREGATION_MASK_SETTING_GET_EXTERNAL_KEY
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String AGGREGATION_MASK_SETTING_KEY
          Configuration AGGREGATION_MASK_SETTING_KEY key.
static java.lang.String AGGREGATION_MASK_SETTING_READ_EXTERNAL_KEY
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String AGGREGATION_MASK_SETTING_WRITE_EXTERNAL_KEY
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String AggregationFilterExpression
          The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AggregationFinalFilterExpression
          The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal.
static java.lang.String AggregationMaskSetting
          The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal.
static java.lang.String[] ALL_COMMANDS
          Comprehensive list of all the command identifiers.
static java.lang.String[] ALL_MEASUREMENTS
          Comprehensive list of all the measurement identifiers.
static java.lang.String[] ALL_SIGNALS
          Comprehensive list of all the signal identifiers.
static java.lang.String ANTENNA_COUNT_ERROR_EXTERNAL_KEY
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNA_COUNT_EXTERNAL_KEY
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNA_COUNT_GET_EXTERNAL_KEY
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNA_COUNT_KEY
          Configuration ANTENNA_COUNT_KEY key.
static java.lang.String ANTENNA_COUNT_READ_EXTERNAL_KEY
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNA_COUNT_WRITE_EXTERNAL_KEY
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNA_DATA_KEY
          The value stored at the "antenna" key of the read-event map is the antenna value, based on a starting index of 1.
static java.lang.String ANTENNA_REPORT_COUNT_DATA_KEY
          The value stored at the "antennaReportCount" key of the read-event map is the count of how many antenna reported information reporting cycle.
static java.lang.String ANTENNA1_DATA_KEY
          The value stored at the "antenna1" key of the read-event map is the antenna 1 optional information.
static java.lang.String ANTENNA2_DATA_KEY
          The value stored at the "antenna2" key of the read-event map is the antenna 2 optional information.
static java.lang.String ANTENNA3_DATA_KEY
          The value stored at the "antenna3" key of the read-event map is the antenna 3 optional information.
static java.lang.String ANTENNA4_DATA_KEY
          The value stored at the "antenna4" key of the read-event map is the antenna 4 optional information.
static java.lang.String AntennaCount
          The "AntennaCount" is maximum number of antennas supported by this reader.
static java.lang.String ANTENNAS_MAP_DATA_KEY
          The value stored at the "antennasMap" key is map containing information about each antenna.
static java.lang.String BATTERY_CHARGE_LEVEL_DATA_KEY
          The value stored at the "batteryChargeLevel" key of the "battery" map is the optional battery charge level information.
static java.lang.String BATTERY_DATA_KEY
          The value stored at the "battery" key of the read-event map is the optional battery information.
static java.lang.String BATTERY_REMAINING_CAPACITY_DATA_KEY
          The value stored at the "batteryRemainingCapacity" key of the "battery" map is the optional battery remaining capacity information.
static java.lang.String BATTERY_REMAINING_TIME_DATA_KEY
          The value stored at the "batteryRemainingTime" key of the "battery" map is the optional battery remaining time information.
static java.lang.String C1G2CRC_DATA_KEY
          The value stored at the "llrpC1G2CRC" key of the llrpAirProtocolTagData map is the CRC value of the tag.
static java.lang.String C1G2PC_DATA_KEY
          The value stored at the "llrpC1G2PC" key of the llrpAirProtocolTagData map is the PC Bits value of the tag.
static java.lang.String Capabilities
          Define the RFID Inventory Profile Capabilities measurement.
static java.lang.String CAPABILITIES_ERROR_EXTERNAL_KEY
          Define the RFID Inventory Profile Capabilities measurement.
static java.lang.String CAPABILITIES_EXTERNAL_KEY
          Define the RFID Inventory Profile Capabilities measurement.
static java.lang.String CAPABILITIES_GET_EXTERNAL_KEY
          Define the RFID Inventory Profile Capabilities measurement.
static java.lang.String CHANNEL_INDEX_DATA_KEY
          The value stored at the "channelIndex" key of the read-event map is the index of the channel the tag was seen.
static java.lang.String CONFIDENCE_DATA_KEY
          The value stored at the "confidence" key of the read-event map is the optional confidence value.
static java.lang.String CONFIDENCE_SCRIPT_ERROR_EXTERNAL_KEY
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String CONFIDENCE_SCRIPT_EXTERNAL_KEY
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String CONFIDENCE_SCRIPT_GET_EXTERNAL_KEY
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String CONFIDENCE_SCRIPT_KEY
          Configuration CONFIDENCE_SCRIPT_KEY key.
static java.lang.String CONFIDENCE_SCRIPT_READ_EXTERNAL_KEY
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String CONFIDENCE_SCRIPT_WRITE_EXTERNAL_KEY
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String ConfidenceScript
          The "ConfidenceScript" is script to compute the "confidence" value.
static java.lang.String Configuration
          Define the RFID Inventory Profile Configuration measurement.
static java.lang.String CONFIGURATION_ERROR_EXTERNAL_KEY
          Define the RFID Inventory Profile Configuration measurement.
static java.lang.String CONFIGURATION_EXTERNAL_KEY
          Define the RFID Inventory Profile Configuration measurement.
static java.lang.String CONFIGURATION_GET_EXTERNAL_KEY
          Define the RFID Inventory Profile Configuration measurement.
static java.lang.String COUNT_AVERAGE_DATA_KEY
          The value stored at the "countAverage" key is the count of all tag reads divided by the tag count.
static java.lang.String COUNT_DATA_KEY
          The value stored at the "count" key of the read-event map is the number of times this tag was read during the reporting cycle.
static java.lang.String DATA_EXTENSIONS_DATA_KEY
          The value stored at the "dataExtensions" key of the TagReport or read-event map is a nested map of meta data as specified in the DataExtensions measurement.
static java.lang.String DATA_EXTENSIONS_ERROR_EXTERNAL_KEY
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DATA_EXTENSIONS_EXTERNAL_KEY
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DATA_EXTENSIONS_GET_EXTERNAL_KEY
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DATA_EXTENSIONS_READ_EXTERNAL_KEY
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DATA_EXTENSIONS_WRITE_EXTERNAL_KEY
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DataExtensions
          The DataExtensions measurement is a map of meta data to be associated with tag data.
static java.lang.String DUPLICATE_FILTERING_ERROR_EXTERNAL_KEY
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_ERROR_EXTERNAL_KEY
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_EXTERNAL_KEY
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_GET_EXTERNAL_KEY
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_KEY
          Configuration DUPLICATE_FILTERING_EXPRESSION_KEY key.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_READ_EXTERNAL_KEY
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DUPLICATE_FILTERING_EXPRESSION_WRITE_EXTERNAL_KEY
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DUPLICATE_FILTERING_EXTERNAL_KEY
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DUPLICATE_FILTERING_GET_EXTERNAL_KEY
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DUPLICATE_FILTERING_READ_EXTERNAL_KEY
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DUPLICATE_FILTERING_WRITE_EXTERNAL_KEY
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DuplicateFiltering
          The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior.
static java.lang.String DuplicateFilteringExpression
          The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values.
static java.lang.String DURATION_DATA_KEY
          The value stored at the "duration" key of the read-event map is the last timestamp minus the initial timestamp that this tag was read during the reporting cycle.
static java.lang.String EPC_BANK_DATA_KEY
          The value stored at the "epcBank" key of the read-event map is the optional epc bank value.
static java.lang.String EPC_URI_DATA_KEY
          The value stored at the "epcURI" key of the read-event map is the optional EPC URI value.
static java.lang.String KEY_DATA_KEY
          The value stored at the "key" key of the read-event map is the key used in the map.
static java.lang.String KILL_PWD_DATA_KEY
          The value stored at the "killPwd" key of the read-event map is the optional kill password value.
static java.lang.String LLRP_ACCESS_SPEC_ID_DATA_KEY
          The value stored at the "llrpAccessSpecId" key of the read-event map is the AccessSpecId related to the LLRP tag report.
static java.lang.String LLRP_AIR_PROTOCOL_TAG_DATA_DATA_KEY
          The value stored at the "llrpAirProtocolTagData" key of the read-event map is nested map which contains the air protocol tag data such as C1G2EPC-PC and C1G2EPC-CRC for C1G2, keyed by the tag data name.
static java.lang.String LLRP_INVENTORY_PARAMETER_SPEC_ID_DATA_KEY
          The value stored at the "llrpInventoryParameterSpecId" key of the read-event map is the InventoryParameterSpecId related to the LLRP tag report.
static java.lang.String LLRP_OP_SPEC_NUM_WORDS_WRITTEN_DATA_KEY
          The value stored at the "llrpOpSpecNumWordsWritten" key of the llrpOpSpecResult map is the number of the words written by the air opSpec.
static java.lang.String LLRP_OP_SPEC_READ_DATA_DATA_KEY
          The value stored at the "llrpOpSpecReadData" key of the llrpOpSpecResult map is the data read by the air opSpec.
static java.lang.String LLRP_OP_SPEC_RESULT_CODE_DATA_KEY
          The value stored at the "llrpOpSpecResultCode" key of the llrpOpSpecResult map is the result code of the air opSpec.
static java.lang.String LLRP_OP_SPEC_RESULT_DATA_KEY
          The value stored at the "llrpOpSpecResult" key of the read-event map is nested map which contains the results of air protocol OpSpecs such as C1G2, keyed by OpSpecID[Optional].
static java.lang.String LLRP_RO_SPEC_ID_DATA_KEY
          The value stored at the "llrpROSpecId" key of the read-event map is the ROSpecId related to the LLRP tag report.
static java.lang.String LLRP_SPEC_INDEX_DATA_KEY
          The value stored at the "llrpSpecIndex" key of the read-event map indicates the item within ROSpec that is related to the LLRP tag report.
static java.lang.String Metrics
          Define the RFID Inventory Profile Metrics measurement.
static java.lang.String METRICS_ERROR_EXTERNAL_KEY
          Define the RFID Inventory Profile Metrics measurement.
static java.lang.String METRICS_EXTERNAL_KEY
          Define the RFID Inventory Profile Metrics measurement.
static java.lang.String METRICS_GET_EXTERNAL_KEY
          Define the RFID Inventory Profile Metrics measurement.
static java.lang.String NSI_DATA_KEY
          The value stored at the "nsi" key of the read-event map is the optional Numbering System Identifier (NSI) bank value.
static java.lang.String PARAMETER_SUBTYPE_DATA_KEY
          The value stored at the "ParameterSubtype" key of customParameter map is the SubType in the custom parameter.
static java.lang.String PEAK_RSSI_AVERAGE_DATA_KEY
          The value stored at the "peakRSSIAverage" key of the read-event map is the peak received power of the EPC backscatter in dBM.
static java.lang.String PEAK_RSSI_DATA_KEY
          The value stored at the "peakRSSI" key of the read-event map is the peak received power of the EPC backscatter in dBM.
static java.lang.String PEAK_RSSI_MAXIMUM_AVERAGE_DATA_KEY
          The value stored at the "peakRSSIMaximumAverage" key of the read-event map is the maximum peak average received power of the EPC backscatter in dBM mean value.
static java.lang.String PEAK_RSSI_MAXIMUM_DATA_KEY
          The value stored at the "peakRSSIMaximum" key of the read-event map is the maximum peak received power of the EPC backscatter in dBM.
static java.lang.String PEAK_RSSI_MAXIMUM_MEDIAN_DATA_KEY
          The value stored at the "peakRSSIMaximumMedian" key of the read-event map is the maximum peak received power of the EPC backscatter in dBM mean value.
static java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_DEVIATION_DATA_KEY
          The value stored at the "peakRSSIMaximumStandardDeviation" key of the read-event map is the maximum peak standard deviation.
static java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_SCORE_DATA_KEY
          The value stored at the "peakRSSIMaximumStandardScore" key of the read-event map is the maximum peak standard score (z-score).
static java.lang.String PEAK_RSSI_MINIMUM_AVERAGE_DATA_KEY
          The value stored at the "peakRSSIMinimumAverage" key of the read-event map is the minimum peak average received power of the EPC backscatter in dBM mean value.
static java.lang.String PEAK_RSSI_MINIMUM_DATA_KEY
          The value stored at the "peakRSSIMinimum" key of the read-event map is the peak received power of the EPC backscatter in dBM.
static java.lang.String PEAK_RSSI_MINIMUM_MEDIAN_DATA_KEY
          The value stored at the "peakRSSIMinimumMedian" key of the read-event map is the peak received power of the EPC backscatter in dBM mean value.
static java.lang.String PEAK_RSSI_MINIMUM_STANDARD_DEVIATION_DATA_KEY
          The value stored at the "peakRSSIMinimumStandardDeviation" key of the read-event map is the minimum peak standard deviation.
static java.lang.String PEAK_RSSI_MINIMUM_STANDARD_SCORE_DATA_KEY
          The value stored at the "peakRSSIMinimumStandardScore" key of the read-event map is the minimum peak standard score (z-score).
static java.lang.String PEAK_RSSI_RANGE_DATA_KEY
          The value stored at the "peakRSSIRange" key of the read-event map is maximum minus minimum the peak received power of the EPC backscatter in dBM.
static java.lang.String PEAK_RSSI_TOTAL_DATA_KEY
          The value stored at the "peakRSSITotal" key of the read-event map is the peak received power of the EPC backscatter in dBM.
static java.lang.String POSITION_DATA_KEY
          The value stored at the "position" key of the TagReport or read-event map is a nested map of meta data as specified in the "TagPositon" measurement.
static java.lang.String READ_OPERATIONS_COUNT_ERROR_EXTERNAL_KEY
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String READ_OPERATIONS_COUNT_EXTERNAL_KEY
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String READ_OPERATIONS_COUNT_GET_EXTERNAL_KEY
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String READ_OPERATIONS_COUNT_KEY
          Configuration READ_OPERATIONS_COUNT_KEY key.
static java.lang.String READ_OPERATIONS_COUNT_READ_EXTERNAL_KEY
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String READ_OPERATIONS_COUNT_WRITE_EXTERNAL_KEY
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String READ_OPERATIONS_ERROR_EXTERNAL_KEY
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String READ_OPERATIONS_EXTERNAL_KEY
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String READ_OPERATIONS_GET_EXTERNAL_KEY
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String READ_OPERATIONS_KEY
          Configuration READ_OPERATIONS_KEY key.
static java.lang.String READ_OPERATIONS_READ_EXTERNAL_KEY
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String READ_OPERATIONS_WRITE_EXTERNAL_KEY
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String READ_STOP_TIMEOUT
          Custom parameter read stop timeout configuration key.
static int READ_STOP_TIMEOUT_DEFAULT
          readStopTimeout is a configuration parameter to specify the timeout period in milliseconds that the profile will wait to receive an acknowledgment from the reader after commanding the reader to stop reading.
static java.lang.String READ_STOP_TIMEOUT_PROPERTY
          readStopTimeout is a configuration parameter to specify the timeout period in milliseconds that the profile will wait to receive an acknowledgment from the reader after commanding the reader to stop reading.
static java.lang.String READER_DATA_KEY
          The value stored at the "reader" key of the read-event map is the ID property configured for this instance of the inventory profile.
static java.lang.String READERS_MAP_DATA_KEY
          The value stored at the "readersMap" key is map containing information about each reader.
static java.lang.String ReadOperations
          The ReadOperations specifies the definition of read operations block against the tag(s).
static java.lang.String ReadOperationsCount
          The ReadOperationsCount measurement defines the number of read operations supported by this profile.
static java.lang.String REPORTS_MAP_DATA_KEY
          The value stored at the "reportsMap" key is map containing information about each reader report.
static java.lang.String RfidInventoryProfile
          Define the RfidInventoryProfile key.
static java.lang.String SERVICE_DESCRIPTION
          Description of the test.
static java.lang.String SERVICE_NAME
          Define the OSGi service name.
static java.lang.String Status
          Define the RFID Inventory Profile Status measurement.
static java.lang.String STATUS_ERROR_EXTERNAL_KEY
          Define the RFID Inventory Profile Status measurement.
static java.lang.String STATUS_EXTERNAL_KEY
          Define the RFID Inventory Profile Status measurement.
static java.lang.String STATUS_GET_EXTERNAL_KEY
          Define the RFID Inventory Profile Status measurement.
static java.lang.String SUB_CYCLE_NUM_DATA_KEY
          If the tagReadingSubCycleMode is not "null", the value stores the sub cycle number the tag is read.
static java.lang.String SUMMARY_DATA_KEY
          The value stored at the "summary" key of the TagReport is a map which contains the summary information about the tags.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_ERROR_EXTERNAL_KEY
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_EXTERNAL_KEY
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_GET_EXTERNAL_KEY
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_KEY
          Configuration SUPER_CACHE_MAXIMUM_SIZE_KEY key.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_READ_EXTERNAL_KEY
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String SUPER_CACHE_MAXIMUM_SIZE_WRITE_EXTERNAL_KEY
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String SuperCacheMaximumSize
          The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size.
static java.lang.String TAG_AGGREGATING_ERROR_EXTERNAL_KEY
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TAG_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TAG_AGGREGATING_EXPRESSION_EXTERNAL_KEY
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TAG_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TAG_AGGREGATING_EXPRESSION_KEY
          Configuration TAG_AGGREGATING_EXPRESSION_KEY key.
static java.lang.String TAG_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TAG_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TAG_AGGREGATING_EXTERNAL_KEY
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TAG_AGGREGATING_GET_EXTERNAL_KEY
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TAG_AGGREGATING_READ_EXTERNAL_KEY
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TAG_AGGREGATING_WRITE_EXTERNAL_KEY
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TAG_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
          The "TagAggregationReport" is a signal containing a collection of tag data in a map structure.
static java.lang.String TAG_AGGREGATION_REPORT_EXTERNAL_KEY
          The "TagAggregationReport" is a signal containing a collection of tag data in a map structure.
static java.lang.String TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
          The "TagAggregationReport" is a signal containing a collection of tag data in a map structure.
static java.lang.String TAG_ANTENNA_REPORT_LEVEL_ERROR_EXTERNAL_KEY
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TAG_ANTENNA_REPORT_LEVEL_EXTERNAL_KEY
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TAG_ANTENNA_REPORT_LEVEL_GET_EXTERNAL_KEY
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TAG_ANTENNA_REPORT_LEVEL_READ_EXTERNAL_KEY
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TAG_ANTENNA_REPORT_LEVEL_WRITE_EXTERNAL_KEY
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TAG_COUNT_DATA_KEY
          The value stored at the "tagCount" key is the count of tags included in the report.
static java.lang.String TAG_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_FILTER_EXPRESSION_EXTERNAL_KEY
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_FILTER_EXPRESSION_GET_EXTERNAL_KEY
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_FILTER_EXPRESSION_KEY
          Configuration TAG_FILTER_EXPRESSION_KEY key.
static java.lang.String TAG_FILTER_EXPRESSION_READ_EXTERNAL_KEY
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_MASK_SETTING_ERROR_EXTERNAL_KEY
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_MASK_SETTING_EXTERNAL_KEY
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_MASK_SETTING_GET_EXTERNAL_KEY
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_MASK_SETTING_KEY
          Configuration TAG_MASK_SETTING_KEY key.
static java.lang.String TAG_MASK_SETTING_READ_EXTERNAL_KEY
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_MASK_SETTING_WRITE_EXTERNAL_KEY
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TAG_POSITION_ERROR_EXTERNAL_KEY
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TAG_POSITION_EXTERNAL_KEY
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TAG_POSITION_GET_EXTERNAL_KEY
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TAG_POSITION_READ_EXTERNAL_KEY
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TAG_POSITION_WRITE_EXTERNAL_KEY
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TAG_READING_ERROR_EXTERNAL_KEY
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAG_READING_EXPRESSION_ERROR_EXTERNAL_KEY
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TAG_READING_EXPRESSION_EXTERNAL_KEY
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TAG_READING_EXPRESSION_GET_EXTERNAL_KEY
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TAG_READING_EXPRESSION_KEY
          Configuration TAG_READING_EXPRESSION_KEY key.
static java.lang.String TAG_READING_EXPRESSION_READ_EXTERNAL_KEY
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TAG_READING_EXPRESSION_WRITE_EXTERNAL_KEY
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TAG_READING_EXTERNAL_KEY
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAG_READING_GET_EXTERNAL_KEY
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAG_READING_READ_EXTERNAL_KEY
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAG_READING_SUB_CYCLE_DELTA
          Custom parameter tag reading sub cycle delta configuration key.
static long TAG_READING_SUB_CYCLE_DELTA_DEFAULT
          tagReadingSubCycleDelta specifies that if the time between the two reports of any tag exceeds this parameter, the sub cycle will be stopped.
static java.lang.String TAG_READING_SUB_CYCLE_DELTA_PROPERTY
          tagReadingSubCycleDelta specifies that if the time between the two reports of any tag exceeds this parameter, the sub cycle will be stopped.
static java.lang.String TAG_READING_SUB_CYCLE_INTERVAL
          Custom parameter tag reading sub cycle interval configuration key.
static long TAG_READING_SUB_CYCLE_INTERVAL_DEFAULT
          tagReadingSubCycleInterval specifies the period length of the interval between sub cycles, no interval if the value is less than or equal to 0.
static java.lang.String TAG_READING_SUB_CYCLE_INTERVAL_PROPERTY
          tagReadingSubCycleInterval specifies the period length of the interval between sub cycles, no interval if the value is less than or equal to 0.
static java.lang.String TAG_READING_SUB_CYCLE_LENGTH
          Custom parameter tag reading sub cycle length configuration key.
static long TAG_READING_SUB_CYCLE_LENGTH_DEFAULT
          tagReadingSubCycleLength is a configuration parameter to specify the period length in milliseconds for each sub cycle, for "auto" mode, it is the timeout value.
static java.lang.String TAG_READING_SUB_CYCLE_LENGTH_PROPERTY
          tagReadingSubCycleLength is a configuration parameter to specify the period length in milliseconds for each sub cycle, for "auto" mode, it is the timeout value.
static java.lang.String TAG_READING_SUB_CYCLE_MODE
          Custom parameter tag reading sub cycle mode configuration key.
static java.lang.String TAG_READING_SUB_CYCLE_MODE_AUTO
          Define the tag reading sub cycle mode auto (String) constant.
static java.lang.String TAG_READING_SUB_CYCLE_MODE_DEFAULT
          tagReadingSubCycleMode is a configuration parameter to specify that if one tag reading cycle should contain sub cycles.
static java.lang.String TAG_READING_SUB_CYCLE_MODE_PERIOD
          Define the tag reading sub cycle mode period (String) constant.
static java.lang.String TAG_READING_SUB_CYCLE_MODE_PROPERTY
          tagReadingSubCycleMode is a configuration parameter to specify that if one tag reading cycle should contain sub cycles.
static java.lang.String TAG_READING_SUB_CYCLE_NUM
          Custom parameter tag reading sub cycle num configuration key.
static int TAG_READING_SUB_CYCLE_NUM_DEFAULT
          tagReadingSubCycleNum is a configuration parameter to specify the number of the sub cycles in each reading cycle, it is only applicable when "tagReadingSubCycleMode" is not "null".
static java.lang.String TAG_READING_SUB_CYCLE_NUM_PROPERTY
          tagReadingSubCycleNum is a configuration parameter to specify the number of the sub cycles in each reading cycle, it is only applicable when "tagReadingSubCycleMode" is not "null".
static java.lang.String TAG_READING_WRITE_EXTERNAL_KEY
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAG_REPORT_ERROR_EXTERNAL_KEY
          The "TagReport" is a signal containing tag data in a map structure.
static java.lang.String TAG_REPORT_EXTERNAL_KEY
          The "TagReport" is a signal containing tag data in a map structure.
static java.lang.String TAG_REPORT_TRIGGER_EXTERNAL_KEY
          The "TagReport" is a signal containing tag data in a map structure.
static java.lang.String TAG_TYPE_DATA_KEY
          The value stored at the "tagType" key of the read-event map is the optional tag type value.
static java.lang.String TagAggregating
          The "TagAggregating" measurement specifies the state of aggregating behavior.
static java.lang.String TagAggregatingExpression
          The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
static java.lang.String TagAggregationReport
          The "TagAggregationReport" is a signal containing a collection of tag data in a map structure.
static java.lang.String TagAntennaReportLevel
          The TagAntennaReportLevel measurement specifies the level of tag antenna reporting.
static java.lang.String TagFilterExpression
          The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TagMaskSetting
          The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal.
static java.lang.String TagPosition
          The "TagPosition" measurement is a map of meta data to be associated with tag data.
static java.lang.String TagReading
          The "TagReading" measurement specifies the state of reading behavior.
static java.lang.String TAGREADING_SUBCYCLE_MODE_AUTO
          Define the tagreading subcycle mode auto (String) constant.
static java.lang.String TAGREADING_SUBCYCLE_MODE_NULL
          Define the tagreading subcycle mode null (String) constant.
static java.lang.String TAGREADING_SUBCYCLE_MODE_PERIOD
          Define the tagreading subcycle mode period (String) constant.
static java.lang.String TagReadingExpression
          The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.
static java.lang.String TagReport
          The "TagReport" is a signal containing tag data in a map structure.
static java.lang.String TAGS_DATA_KEY
          The value stored at the "tags" key of the TagReport is a nested map which contains tag data, keyed by tag ID string.
static java.lang.String TID_BANK_DATA_KEY
          The value stored at the "tidBank" key of the read-event map is the optional TID bank value.
static java.lang.String TID_DATA_KEY
          The value stored at the "tid" key of the read-event map is the TID of the tag.
static java.lang.String TIMESTAMP_FIRST_DATA_KEY
          The value stored at the "timestampFirst" key of the read-event map is the initial timestamp that this tag was read during the reporting cycle.
static java.lang.String TIMESTAMP_FIRST_UPTIME_DATA_KEY
          The value stored at the "timestampFirst" key of the read-event map is the initial uptime timestamp that this tag was read during the reporting cycle.
static java.lang.String TIMESTAMP_LAST_DATA_KEY
          The value stored at the "timestampLast" key of the read-event map is the final timestamp that this tag was read during the reporting cycle.
static java.lang.String TIMESTAMP_LAST_UPTIME_DATA_KEY
          The value stored at the "timestampLast" key of the read-event map is the last uptime timestamp that this tag was read during the reporting cycle.
static java.lang.String TOTAL_SUB_CYCLES_DATA_KEY
          If the tagReadingSubCycleMode is not "null", the value stores the total sub cycle numbers.
static java.lang.String USER_BANK_DATA_KEY
          The value stored at the "userBank" key of the read-event map is the optional user bank value.
static java.lang.String USERDATA_DATA_KEY
          The value stored at the "userdata" key of the read-event map is the user data of the tag.
static java.lang.String VENDOR_EXTENSIONS_DATA_KEY
          The value stored at the "vendorExtensions" key of the read-event map is the List of custom parameters.
static java.lang.String VENDOR_IDENTIFIER_DATA_KEY
          The value stored at the "VendorIdentifier" key of customParameter map is the Vendor ID in the custom parameter.
static java.lang.String VENDOR_PARAMETER_VALUE_DATA_KEY
          The value stored at the "VendorParameterValue" key of customParameter map is the VendorParameter Value in the custom parameter.
 

Field Detail

SERVICE_NAME

static final java.lang.String SERVICE_NAME
Define the OSGi service name.

Since:
1.0
See Also:
Constant Field Values

RfidInventoryProfile

static final java.lang.String RfidInventoryProfile
Define the RfidInventoryProfile key.

Since:
1.0
See Also:
Constant Field Values

TagReadingExpression

static final java.lang.String TagReadingExpression
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.0
See Also:
Constant Field Values

TAG_READING_EXPRESSION_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXPRESSION_EXTERNAL_KEY
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.1
See Also:
Constant Field Values

TAG_READING_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXPRESSION_GET_EXTERNAL_KEY
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.1

TAG_READING_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXPRESSION_READ_EXTERNAL_KEY
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReadingExpression/read"

TAG_READING_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXPRESSION_WRITE_EXTERNAL_KEY
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReadingExpression/write"

TAG_READING_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXPRESSION_ERROR_EXTERNAL_KEY
The "TagReadingExpression" is an Lightweight Directory Access Protocol (LDAP) expression to trigger the state of tag reading based on input pin and control values.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReadingExpression/error"

TAG_READING_EXPRESSION_KEY

static final java.lang.String TAG_READING_EXPRESSION_KEY
Configuration TAG_READING_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

TagReading

static final java.lang.String TagReading
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.0
See Also:
Constant Field Values

TAG_READING_EXTERNAL_KEY

static final java.lang.String TAG_READING_EXTERNAL_KEY
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
Constant Field Values

TAG_READING_GET_EXTERNAL_KEY

static final java.lang.String TAG_READING_GET_EXTERNAL_KEY
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1

TAG_READING_READ_EXTERNAL_KEY

static final java.lang.String TAG_READING_READ_EXTERNAL_KEY
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReading/read"

TAG_READING_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_READING_WRITE_EXTERNAL_KEY
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReading/write"

TAG_READING_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_READING_ERROR_EXTERNAL_KEY
The "TagReading" measurement specifies the state of reading behavior. When the measurement is true, the reader is reading tags in autonomous mode and the profile reports tag data on the TagReport signal. When the measurement is false, the reader's autonomous mode is not enabled and any unexpected tag data reported by the reader is published on the TagReport error signal. If an LDAP expression is specified for the TagReadingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReading/error"

TagAggregatingExpression

static final java.lang.String TagAggregatingExpression
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.0
See Also:
Constant Field Values

TAG_AGGREGATING_EXPRESSION_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_EXTERNAL_KEY
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.1
See Also:
Constant Field Values

TAG_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.1

TAG_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregatingExpression/read"

TAG_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregatingExpression/write"

TAG_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
The "TagAggregatingExpression" is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregatingExpression/error"

TAG_AGGREGATING_EXPRESSION_KEY

static final java.lang.String TAG_AGGREGATING_EXPRESSION_KEY
Configuration TAG_AGGREGATING_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

TagAggregating

static final java.lang.String TagAggregating
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.0
See Also:
Constant Field Values

TAG_AGGREGATING_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_EXTERNAL_KEY
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
Constant Field Values

TAG_AGGREGATING_GET_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_GET_EXTERNAL_KEY
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1

TAG_AGGREGATING_READ_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_READ_EXTERNAL_KEY
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregating/read"

TAG_AGGREGATING_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_WRITE_EXTERNAL_KEY
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregating/write"

TAG_AGGREGATING_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATING_ERROR_EXTERNAL_KEY
The "TagAggregating" measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Mask. When the measurement value is updated to false, the profile publishes the TagAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregating/error"

TagMaskSetting

static final java.lang.String TagMaskSetting
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.0
See Also:
Constant Field Values

TAG_MASK_SETTING_EXTERNAL_KEY

static final java.lang.String TAG_MASK_SETTING_EXTERNAL_KEY
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
Constant Field Values

TAG_MASK_SETTING_GET_EXTERNAL_KEY

static final java.lang.String TAG_MASK_SETTING_GET_EXTERNAL_KEY
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1

TAG_MASK_SETTING_READ_EXTERNAL_KEY

static final java.lang.String TAG_MASK_SETTING_READ_EXTERNAL_KEY
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagMaskSetting/read"

TAG_MASK_SETTING_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_MASK_SETTING_WRITE_EXTERNAL_KEY
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagMaskSetting/write"

TAG_MASK_SETTING_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_MASK_SETTING_ERROR_EXTERNAL_KEY
The "TagMaskSetting" specifies the definition of tags that should be published on the "TagReport" signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagMaskSetting/error"

TAG_MASK_SETTING_KEY

static final java.lang.String TAG_MASK_SETTING_KEY
Configuration TAG_MASK_SETTING_KEY key.

Since:
1.1
See Also:
Constant Field Values

TagFilterExpression

static final java.lang.String TagFilterExpression
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1
See Also:
Constant Field Values

TAG_FILTER_EXPRESSION_EXTERNAL_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_EXTERNAL_KEY
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1
See Also:
Constant Field Values

TAG_FILTER_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1

TAG_FILTER_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_READ_EXTERNAL_KEY
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagFilterExpression/read"

TAG_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagFilterExpression/write"

TAG_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
The optional TagFilterExpression specifies the definition of tags that should be published on the "TagReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "TagMaskSetting" and the results of the LDAP expression is true, then the tag will be reported in the "TagReport". .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagFilterExpression/error"

TAG_FILTER_EXPRESSION_KEY

static final java.lang.String TAG_FILTER_EXPRESSION_KEY
Configuration TAG_FILTER_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

AggregationFilterExpression

static final java.lang.String AggregationFilterExpression
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
Constant Field Values

AGGREGATION_FILTER_EXPRESSION_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_EXTERNAL_KEY
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
Constant Field Values

AGGREGATION_FILTER_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1

AGGREGATION_FILTER_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_READ_EXTERNAL_KEY
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFilterExpression/read"

AGGREGATION_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFilterExpression/write"

AGGREGATION_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
The optional AggregationFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". If the tag passes the "AggregationMaskSetting" and the result of the LDAP expression is true, then the tag will be reported in the "TagAggregationReport". If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFilterExpression/error"

AGGREGATION_FILTER_EXPRESSION_KEY

static final java.lang.String AGGREGATION_FILTER_EXPRESSION_KEY
Configuration AGGREGATION_FILTER_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

AggregationFinalFilterExpression

static final java.lang.String AggregationFinalFilterExpression
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
Constant Field Values

AGGREGATION_FINAL_FILTER_EXPRESSION_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_EXTERNAL_KEY
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
Constant Field Values

AGGREGATION_FINAL_FILTER_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1

AGGREGATION_FINAL_FILTER_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_READ_EXTERNAL_KEY
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/read"

AGGREGATION_FINAL_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/write".

AGGREGATION_FINAL_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
The optional AggregationFinalFilterExpression specifies the definition of tags that should be published on the "TagAggregationReport" signal. The filter expression is an LDAP expression. The keys in the LDAP expression are the keys defined in the "TagReport". Before the "TagAggregationReport" is published, this LDAP filter will be applied to all tags in the current tag aggregation. If the result of the LDAP filter is true, then the tag will be included in the report. If the filtering can be done by the "AggregationMaskSetting", then this would be better than using this LDAP filter. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/error".

AGGREGATION_FINAL_FILTER_EXPRESSION_KEY

static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_KEY
Configuration AGGREGATION_FINAL_FILTER_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

DuplicateFilteringExpression

static final java.lang.String DuplicateFilteringExpression
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.0
See Also:
Constant Field Values

DUPLICATE_FILTERING_EXPRESSION_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_EXTERNAL_KEY
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.1
See Also:
Constant Field Values

DUPLICATE_FILTERING_EXPRESSION_GET_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_GET_EXTERNAL_KEY
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.1

DUPLICATE_FILTERING_EXPRESSION_READ_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_READ_EXTERNAL_KEY
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/read"

DUPLICATE_FILTERING_EXPRESSION_WRITE_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_WRITE_EXTERNAL_KEY
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/write"

DUPLICATE_FILTERING_EXPRESSION_ERROR_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_ERROR_EXTERNAL_KEY
The DuplicateFilteringExpression is an LDAP expression to trigger the behavior of duplicate tag filtering based on input pin and control values. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/error"

DUPLICATE_FILTERING_EXPRESSION_KEY

static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_KEY
Configuration DUPLICATE_FILTERING_EXPRESSION_KEY key.

Since:
1.1
See Also:
Constant Field Values

DuplicateFiltering

static final java.lang.String DuplicateFiltering
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.0
See Also:
Constant Field Values

DUPLICATE_FILTERING_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_EXTERNAL_KEY
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
Constant Field Values

DUPLICATE_FILTERING_GET_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_GET_EXTERNAL_KEY
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1

DUPLICATE_FILTERING_READ_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_READ_EXTERNAL_KEY
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFiltering/read"

DUPLICATE_FILTERING_WRITE_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_WRITE_EXTERNAL_KEY
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFiltering/write"

DUPLICATE_FILTERING_ERROR_EXTERNAL_KEY

static final java.lang.String DUPLICATE_FILTERING_ERROR_EXTERNAL_KEY
The DuplicateFiltering measurement specifies the state of duplicate tag filtering behavior. When the measurement value is true, the profile signals only the initial report of each tag read during the filtering cycle. When the measurement value is updated to false, the profile clears the cache of tags it has seen during the filtering cycle. While the measurement value is false, the profile does not filter out duplicate tags or cache incoming tags. If an LDAP expression is specified for the DuplicateFilteringExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DuplicateFiltering/error"

AggregationMaskSetting

static final java.lang.String AggregationMaskSetting
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.0
See Also:
Constant Field Values

AGGREGATION_MASK_SETTING_EXTERNAL_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_EXTERNAL_KEY
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
Constant Field Values

AGGREGATION_MASK_SETTING_GET_EXTERNAL_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_GET_EXTERNAL_KEY
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1

AGGREGATION_MASK_SETTING_READ_EXTERNAL_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_READ_EXTERNAL_KEY
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationMaskSetting/read"

AGGREGATION_MASK_SETTING_WRITE_EXTERNAL_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_WRITE_EXTERNAL_KEY
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationMaskSetting/write"

AGGREGATION_MASK_SETTING_ERROR_EXTERNAL_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_ERROR_EXTERNAL_KEY
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a place holder for future use, and the value is ignored. The second parameter is the pointer value. It is the first bit location of the tag id against which to compare the mask. The third parameter is the length. It specifies the number of bits of the tag id to compare against the mask. The final parameter is the mask value specified as a hex string with each byte (two characters) separated by a blank. It is the pattern against which the specified section of the tag id must match to pass the filter. Multiple masks can be specified by separating them with a semicolon. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AggregationMaskSetting/error"

AGGREGATION_MASK_SETTING_KEY

static final java.lang.String AGGREGATION_MASK_SETTING_KEY
Configuration AGGREGATION_MASK_SETTING_KEY key.

Since:
1.1
See Also:
Constant Field Values

DataExtensions

static final java.lang.String DataExtensions
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.0
See Also:
Constant Field Values

DATA_EXTENSIONS_EXTERNAL_KEY

static final java.lang.String DATA_EXTENSIONS_EXTERNAL_KEY
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
Constant Field Values

DATA_EXTENSIONS_GET_EXTERNAL_KEY

static final java.lang.String DATA_EXTENSIONS_GET_EXTERNAL_KEY
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1

DATA_EXTENSIONS_READ_EXTERNAL_KEY

static final java.lang.String DATA_EXTENSIONS_READ_EXTERNAL_KEY
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DataExtensions/read"

DATA_EXTENSIONS_WRITE_EXTERNAL_KEY

static final java.lang.String DATA_EXTENSIONS_WRITE_EXTERNAL_KEY
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DataExtensions/write"

DATA_EXTENSIONS_ERROR_EXTERNAL_KEY

static final java.lang.String DATA_EXTENSIONS_ERROR_EXTERNAL_KEY
The DataExtensions measurement is a map of meta data to be associated with tag data. Data extensions are applied to TagReport data as the signal is published. Data extensions are applied to a TagAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataExtensions value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/DataExtensions/error"

TagPosition

static final java.lang.String TagPosition
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
Constant Field Values

TAG_POSITION_EXTERNAL_KEY

static final java.lang.String TAG_POSITION_EXTERNAL_KEY
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
Constant Field Values

TAG_POSITION_GET_EXTERNAL_KEY

static final java.lang.String TAG_POSITION_GET_EXTERNAL_KEY
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1

TAG_POSITION_READ_EXTERNAL_KEY

static final java.lang.String TAG_POSITION_READ_EXTERNAL_KEY
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagPosition/read"

TAG_POSITION_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_POSITION_WRITE_EXTERNAL_KEY
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagPosition/write"

TAG_POSITION_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_POSITION_ERROR_EXTERNAL_KEY
The "TagPosition" measurement is a map of meta data to be associated with tag data. "TagPosition" extensions are applied to "TagReport" data as the signal is published. "TagPosition" are applied to a "TagAggregationReport" at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current "TagPosition" value. Setting the value of the measurement to an empty map clears the value. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagPosition/error"

TagAntennaReportLevel

static final java.lang.String TagAntennaReportLevel
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1
See Also:
Constant Field Values

TAG_ANTENNA_REPORT_LEVEL_EXTERNAL_KEY

static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_EXTERNAL_KEY
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1
See Also:
Constant Field Values

TAG_ANTENNA_REPORT_LEVEL_GET_EXTERNAL_KEY

static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_GET_EXTERNAL_KEY
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1

TAG_ANTENNA_REPORT_LEVEL_READ_EXTERNAL_KEY

static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_READ_EXTERNAL_KEY
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAntennaReportLevel/read"

TAG_ANTENNA_REPORT_LEVEL_WRITE_EXTERNAL_KEY

static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_WRITE_EXTERNAL_KEY
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAntennaReportLevel/write"

TAG_ANTENNA_REPORT_LEVEL_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_ERROR_EXTERNAL_KEY
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. The higher the value, the more tag antenna information is reported in tag data on the "TagReport" and "TagAggregationReport" signals but the extra processing is required which may effect performance.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAntennaReportLevel/error"

ReadOperations

static final java.lang.String ReadOperations
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1
See Also:
Constant Field Values

READ_OPERATIONS_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_EXTERNAL_KEY
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1
See Also:
Constant Field Values

READ_OPERATIONS_GET_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_GET_EXTERNAL_KEY
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1

READ_OPERATIONS_READ_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_READ_EXTERNAL_KEY
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperations/read"

READ_OPERATIONS_WRITE_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_WRITE_EXTERNAL_KEY
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperations/write"

READ_OPERATIONS_ERROR_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_ERROR_EXTERNAL_KEY
The ReadOperations specifies the definition of read operations block against the tag(s). A read operation block can contain multiple read operations separated by the character ",". A read operation is specified by parameters based on the operation, the parameters are separated by. the character ";". The first parameter specifies the kind of read operation. <ul > </li> <li>Operation Read: Defines the read operation on the specified memory bank on the tags. Format: Read;MemoryBank;Pointer;WordCount;Password;OpCount;Timeout[;OperationId] <ol> <li> Read: Reserved name for the read operation. </li> <li> MemoryBank: An integer to specify the memory bank to read from. </li> <li> Pointer: The first location (zero based) in the memory bank to start the read operation. </li> <li> Password: The password for the read operation. </li> <li> OpCount: An integer to specify the times this read operation will be executed, it will be unlimited if the value is 0. . </li> <li> Timeout: The timeout value (milliseconds) for the read operation, no timeout if the value is 0. </li> <li> OperationId: The optional parameter to assign an id to the read operation. </li> </ol> </li> </ul>

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperations/error"

READ_OPERATIONS_KEY

static final java.lang.String READ_OPERATIONS_KEY
Configuration READ_OPERATIONS_KEY key.

Since:
1.1
See Also:
Constant Field Values

ReadOperationsCount

static final java.lang.String ReadOperationsCount
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1
See Also:
Constant Field Values

READ_OPERATIONS_COUNT_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_COUNT_EXTERNAL_KEY
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1
See Also:
Constant Field Values

READ_OPERATIONS_COUNT_GET_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_COUNT_GET_EXTERNAL_KEY
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1

READ_OPERATIONS_COUNT_READ_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_COUNT_READ_EXTERNAL_KEY
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperationsCount/read"

READ_OPERATIONS_COUNT_WRITE_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_COUNT_WRITE_EXTERNAL_KEY
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperationsCount/write"

READ_OPERATIONS_COUNT_ERROR_EXTERNAL_KEY

static final java.lang.String READ_OPERATIONS_COUNT_ERROR_EXTERNAL_KEY
The ReadOperationsCount measurement defines the number of read operations supported by this profile. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ReadOperationsCount/error"

READ_OPERATIONS_COUNT_KEY

static final java.lang.String READ_OPERATIONS_COUNT_KEY
Configuration READ_OPERATIONS_COUNT_KEY key.

Since:
1.1
See Also:
Constant Field Values

AntennaCount

static final java.lang.String AntennaCount
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1
See Also:
Constant Field Values

ANTENNA_COUNT_EXTERNAL_KEY

static final java.lang.String ANTENNA_COUNT_EXTERNAL_KEY
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1
See Also:
Constant Field Values

ANTENNA_COUNT_GET_EXTERNAL_KEY

static final java.lang.String ANTENNA_COUNT_GET_EXTERNAL_KEY
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1

ANTENNA_COUNT_READ_EXTERNAL_KEY

static final java.lang.String ANTENNA_COUNT_READ_EXTERNAL_KEY
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AntennaCount/read"

ANTENNA_COUNT_WRITE_EXTERNAL_KEY

static final java.lang.String ANTENNA_COUNT_WRITE_EXTERNAL_KEY
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AntennaCount/write"

ANTENNA_COUNT_ERROR_EXTERNAL_KEY

static final java.lang.String ANTENNA_COUNT_ERROR_EXTERNAL_KEY
The "AntennaCount" is maximum number of antennas supported by this reader.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/AntennaCount/error"

ANTENNA_COUNT_KEY

static final java.lang.String ANTENNA_COUNT_KEY
Configuration ANTENNA_COUNT_KEY key.

Since:
1.1
See Also:
Constant Field Values

SuperCacheMaximumSize

static final java.lang.String SuperCacheMaximumSize
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1
See Also:
Constant Field Values

SUPER_CACHE_MAXIMUM_SIZE_EXTERNAL_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_EXTERNAL_KEY
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1
See Also:
Constant Field Values

SUPER_CACHE_MAXIMUM_SIZE_GET_EXTERNAL_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_GET_EXTERNAL_KEY
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1

SUPER_CACHE_MAXIMUM_SIZE_READ_EXTERNAL_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_READ_EXTERNAL_KEY
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/read"

SUPER_CACHE_MAXIMUM_SIZE_WRITE_EXTERNAL_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_WRITE_EXTERNAL_KEY
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/write"

SUPER_CACHE_MAXIMUM_SIZE_ERROR_EXTERNAL_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_ERROR_EXTERNAL_KEY
The "SuperCacheMaximumSize" is maximum number of tags supported by the super cache size. A zero value means that the super cache will not be used. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/error"

SUPER_CACHE_MAXIMUM_SIZE_KEY

static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_KEY
Configuration SUPER_CACHE_MAXIMUM_SIZE_KEY key.

Since:
1.1
See Also:
Constant Field Values

ConfidenceScript

static final java.lang.String ConfidenceScript
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1
See Also:
Constant Field Values

CONFIDENCE_SCRIPT_EXTERNAL_KEY

static final java.lang.String CONFIDENCE_SCRIPT_EXTERNAL_KEY
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1
See Also:
Constant Field Values

CONFIDENCE_SCRIPT_GET_EXTERNAL_KEY

static final java.lang.String CONFIDENCE_SCRIPT_GET_EXTERNAL_KEY
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1

CONFIDENCE_SCRIPT_READ_EXTERNAL_KEY

static final java.lang.String CONFIDENCE_SCRIPT_READ_EXTERNAL_KEY
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ConfidenceScript/read"

CONFIDENCE_SCRIPT_WRITE_EXTERNAL_KEY

static final java.lang.String CONFIDENCE_SCRIPT_WRITE_EXTERNAL_KEY
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ConfidenceScript/write"

CONFIDENCE_SCRIPT_ERROR_EXTERNAL_KEY

static final java.lang.String CONFIDENCE_SCRIPT_ERROR_EXTERNAL_KEY
The "ConfidenceScript" is script to compute the "confidence" value.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY, org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/ConfidenceScript/error"

CONFIDENCE_SCRIPT_KEY

static final java.lang.String CONFIDENCE_SCRIPT_KEY
Configuration CONFIDENCE_SCRIPT_KEY key.

Since:
1.1
See Also:
Constant Field Values

TagReport

static final java.lang.String TagReport
The "TagReport" is a signal containing tag data in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.0
See Also:
Constant Field Values

TAG_REPORT_EXTERNAL_KEY

static final java.lang.String TAG_REPORT_EXTERNAL_KEY
The "TagReport" is a signal containing tag data in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1
See Also:
Constant Field Values

TAG_REPORT_TRIGGER_EXTERNAL_KEY

static final java.lang.String TAG_REPORT_TRIGGER_EXTERNAL_KEY
The "TagReport" is a signal containing tag data in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1

TAG_REPORT_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_REPORT_ERROR_EXTERNAL_KEY
The "TagReport" is a signal containing tag data in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagReport/error"

TagAggregationReport

static final java.lang.String TagAggregationReport
The "TagAggregationReport" is a signal containing a collection of tag data in a map structure. The report can contain zero to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.0
See Also:
Constant Field Values

TAG_AGGREGATION_REPORT_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATION_REPORT_EXTERNAL_KEY
The "TagAggregationReport" is a signal containing a collection of tag data in a map structure. The report can contain zero to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1
See Also:
Constant Field Values

TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
The "TagAggregationReport" is a signal containing a collection of tag data in a map structure. The report can contain zero to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1

TAG_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY

static final java.lang.String TAG_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
The "TagAggregationReport" is a signal containing a collection of tag data in a map structure. The report can contain zero to many tags stored at the "tags" key. It may include data extension meta data stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. .

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY, value of this field is "prefix/RfidInventory/TagAggregationReport/error"

ALL_COMMANDS

static final java.lang.String[] ALL_COMMANDS
Comprehensive list of all the command identifiers.

Since:
1.0

ALL_SIGNALS

static final java.lang.String[] ALL_SIGNALS
Comprehensive list of all the signal identifiers.

Since:
1.0

ALL_MEASUREMENTS

static final java.lang.String[] ALL_MEASUREMENTS
Comprehensive list of all the measurement identifiers.

Since:
1.0

TAGS_DATA_KEY

static final java.lang.String TAGS_DATA_KEY
The value stored at the "tags" key of the TagReport is a nested map which contains tag data, keyed by tag ID string. Each tag ID is the index for a nested map structure containing details about the read-events for that tag. The event data map may include the keys "antenna", "count", "reader", "timestampFirst", "timestampLast", and "dataExtensions". . The value of this field is "tags"

Since:
1.0
See Also:
Constant Field Values

ANTENNA_DATA_KEY

static final java.lang.String ANTENNA_DATA_KEY
The value stored at the "antenna" key of the read-event map is the antenna value, based on a starting index of 1. It is included in the read-event map if the reader is configured to report which antenna read the tag. The value of this field is "antenna"

Since:
1.1
See Also:
Constant Field Values

COUNT_DATA_KEY

static final java.lang.String COUNT_DATA_KEY
The value stored at the "count" key of the read-event map is the number of times this tag was read during the reporting cycle. . The value of this field is "count"

Since:
1.1
See Also:
Constant Field Values

READER_DATA_KEY

static final java.lang.String READER_DATA_KEY
The value stored at the "reader" key of the read-event map is the ID property configured for this instance of the inventory profile. The value of this field is "reader"

Since:
1.1
See Also:
Constant Field Values

KEY_DATA_KEY

static final java.lang.String KEY_DATA_KEY
The value stored at the "key" key of the read-event map is the key used in the map. Currently, this value is only available when using the LDAP expressions. . The value of this field is "key"

Since:
1.1
See Also:
Constant Field Values

ANTENNA_REPORT_COUNT_DATA_KEY

static final java.lang.String ANTENNA_REPORT_COUNT_DATA_KEY
The value stored at the "antennaReportCount" key of the read-event map is the count of how many antenna reported information reporting cycle. The value of this field is "antennaReportCount"

Since:
1.1
See Also:
Constant Field Values

TIMESTAMP_FIRST_DATA_KEY

static final java.lang.String TIMESTAMP_FIRST_DATA_KEY
The value stored at the "timestampFirst" key of the read-event map is the initial timestamp that this tag was read during the reporting cycle. The value of this field is "timestampFirst"

Since:
1.1
See Also:
Constant Field Values

TIMESTAMP_LAST_DATA_KEY

static final java.lang.String TIMESTAMP_LAST_DATA_KEY
The value stored at the "timestampLast" key of the read-event map is the final timestamp that this tag was read during the reporting cycle. The value of this field is "timestampLast"

Since:
1.1
See Also:
Constant Field Values

DURATION_DATA_KEY

static final java.lang.String DURATION_DATA_KEY
The value stored at the "duration" key of the read-event map is the last timestamp minus the initial timestamp that this tag was read during the reporting cycle. The value of this field is "duration"

Since:
1.1
See Also:
Constant Field Values

DATA_EXTENSIONS_DATA_KEY

static final java.lang.String DATA_EXTENSIONS_DATA_KEY
The value stored at the "dataExtensions" key of the TagReport or read-event map is a nested map of meta data as specified in the DataExtensions measurement. The value of this field is "dataExtensions"

Since:
1.1
See Also:
Constant Field Values

POSITION_DATA_KEY

static final java.lang.String POSITION_DATA_KEY
The value stored at the "position" key of the TagReport or read-event map is a nested map of meta data as specified in the "TagPositon" measurement. The value of this field is "position"

Since:
1.1
See Also:
Constant Field Values

TID_DATA_KEY

static final java.lang.String TID_DATA_KEY
The value stored at the "tid" key of the read-event map is the TID of the tag. The value of this field is "tid"

Since:
1.1
See Also:
Constant Field Values

USERDATA_DATA_KEY

static final java.lang.String USERDATA_DATA_KEY
The value stored at the "userdata" key of the read-event map is the user data of the tag. The value of this field is "userdata"

Since:
1.1
See Also:
Constant Field Values

LLRP_RO_SPEC_ID_DATA_KEY

static final java.lang.String LLRP_RO_SPEC_ID_DATA_KEY
The value stored at the "llrpROSpecId" key of the read-event map is the ROSpecId related to the LLRP tag report. [Optional]. The value of this field is "llrpROSpecId"

Since:
1.1
See Also:
Constant Field Values

LLRP_SPEC_INDEX_DATA_KEY

static final java.lang.String LLRP_SPEC_INDEX_DATA_KEY
The value stored at the "llrpSpecIndex" key of the read-event map indicates the item within ROSpec that is related to the LLRP tag report. [Optional]. The value of this field is "llrpSpecIndex"

Since:
1.1
See Also:
Constant Field Values

LLRP_INVENTORY_PARAMETER_SPEC_ID_DATA_KEY

static final java.lang.String LLRP_INVENTORY_PARAMETER_SPEC_ID_DATA_KEY
The value stored at the "llrpInventoryParameterSpecId" key of the read-event map is the InventoryParameterSpecId related to the LLRP tag report. [Optional]. The value of this field is "llrpInventoryParameterSpecId"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_DATA_KEY

static final java.lang.String PEAK_RSSI_DATA_KEY
The value stored at the "peakRSSI" key of the read-event map is the peak received power of the EPC backscatter in dBM. See the "PeakRSSI Parameter" section of the LLRP Specification. [Optional]. The value of this field is "peakRSSI"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_AVERAGE_DATA_KEY

static final java.lang.String PEAK_RSSI_AVERAGE_DATA_KEY
The value stored at the "peakRSSIAverage" key of the read-event map is the peak received power of the EPC backscatter in dBM. [Optional]. The value of this field is "peakRSSIAverage"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_RANGE_DATA_KEY

static final java.lang.String PEAK_RSSI_RANGE_DATA_KEY
The value stored at the "peakRSSIRange" key of the read-event map is maximum minus minimum the peak received power of the EPC backscatter in dBM. [Optional]. The value of this field is "peakRSSIRange"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_TOTAL_DATA_KEY

static final java.lang.String PEAK_RSSI_TOTAL_DATA_KEY
The value stored at the "peakRSSITotal" key of the read-event map is the peak received power of the EPC backscatter in dBM. [Optional]. The value of this field is "peakRSSITotal"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MINIMUM_DATA_KEY

static final java.lang.String PEAK_RSSI_MINIMUM_DATA_KEY
The value stored at the "peakRSSIMinimum" key of the read-event map is the peak received power of the EPC backscatter in dBM. [Optional]. The value of this field is "peakRSSIMinimum"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MAXIMUM_DATA_KEY

static final java.lang.String PEAK_RSSI_MAXIMUM_DATA_KEY
The value stored at the "peakRSSIMaximum" key of the read-event map is the maximum peak received power of the EPC backscatter in dBM. [Optional]. The value of this field is "peakRSSIMaximum"

Since:
1.1
See Also:
Constant Field Values

CHANNEL_INDEX_DATA_KEY

static final java.lang.String CHANNEL_INDEX_DATA_KEY
The value stored at the "channelIndex" key of the read-event map is the index of the channel the tag was seen. [Optional]. The value of this field is "channelIndex"

Since:
1.1
See Also:
Constant Field Values

TIMESTAMP_FIRST_UPTIME_DATA_KEY

static final java.lang.String TIMESTAMP_FIRST_UPTIME_DATA_KEY
The value stored at the "timestampFirst" key of the read-event map is the initial uptime timestamp that this tag was read during the reporting cycle. [Optional]. The value of this field is "timestampFirstUptime"

Since:
1.1
See Also:
Constant Field Values

TIMESTAMP_LAST_UPTIME_DATA_KEY

static final java.lang.String TIMESTAMP_LAST_UPTIME_DATA_KEY
The value stored at the "timestampLast" key of the read-event map is the last uptime timestamp that this tag was read during the reporting cycle. [Optional]. The value of this field is "timestampLastUptime"

Since:
1.1
See Also:
Constant Field Values

LLRP_ACCESS_SPEC_ID_DATA_KEY

static final java.lang.String LLRP_ACCESS_SPEC_ID_DATA_KEY
The value stored at the "llrpAccessSpecId" key of the read-event map is the AccessSpecId related to the LLRP tag report. [Optional]. The value of this field is "llrpAccessSpecId"

Since:
1.1
See Also:
Constant Field Values

LLRP_AIR_PROTOCOL_TAG_DATA_DATA_KEY

static final java.lang.String LLRP_AIR_PROTOCOL_TAG_DATA_DATA_KEY
The value stored at the "llrpAirProtocolTagData" key of the read-event map is nested map which contains the air protocol tag data such as C1G2EPC-PC and C1G2EPC-CRC for C1G2, keyed by the tag data name. [Optional]. The value of this field is "llrpAirProtocolTagData"

Since:
1.1
See Also:
Constant Field Values

C1G2PC_DATA_KEY

static final java.lang.String C1G2PC_DATA_KEY
The value stored at the "llrpC1G2PC" key of the llrpAirProtocolTagData map is the PC Bits value of the tag. [Optional]. The value of this field is "C1G2PC"

Since:
1.1
See Also:
Constant Field Values

C1G2CRC_DATA_KEY

static final java.lang.String C1G2CRC_DATA_KEY
The value stored at the "llrpC1G2CRC" key of the llrpAirProtocolTagData map is the CRC value of the tag. [Optional]. The value of this field is "C1G2CRC"

Since:
1.1
See Also:
Constant Field Values

LLRP_OP_SPEC_RESULT_DATA_KEY

static final java.lang.String LLRP_OP_SPEC_RESULT_DATA_KEY
The value stored at the "llrpOpSpecResult" key of the read-event map is nested map which contains the results of air protocol OpSpecs such as C1G2, keyed by OpSpecID[Optional]. The value of this field is "llrpOpSpecResult"

Since:
1.1
See Also:
Constant Field Values

LLRP_OP_SPEC_RESULT_CODE_DATA_KEY

static final java.lang.String LLRP_OP_SPEC_RESULT_CODE_DATA_KEY
The value stored at the "llrpOpSpecResultCode" key of the llrpOpSpecResult map is the result code of the air opSpec. [Optional]. The value of this field is "llrpOpSpecResultCode"

Since:
1.1
See Also:
Constant Field Values

LLRP_OP_SPEC_READ_DATA_DATA_KEY

static final java.lang.String LLRP_OP_SPEC_READ_DATA_DATA_KEY
The value stored at the "llrpOpSpecReadData" key of the llrpOpSpecResult map is the data read by the air opSpec. [Optional]. The value of this field is "llrpOpSpecReadData"

Since:
1.1
See Also:
Constant Field Values

LLRP_OP_SPEC_NUM_WORDS_WRITTEN_DATA_KEY

static final java.lang.String LLRP_OP_SPEC_NUM_WORDS_WRITTEN_DATA_KEY
The value stored at the "llrpOpSpecNumWordsWritten" key of the llrpOpSpecResult map is the number of the words written by the air opSpec. [Optional]. The value of this field is "llrpOpSpecNumWordsWritten"

Since:
1.1
See Also:
Constant Field Values

ANTENNA1_DATA_KEY

static final java.lang.String ANTENNA1_DATA_KEY
The value stored at the "antenna1" key of the read-event map is the antenna 1 optional information. The value of this field is "antenna1"

Since:
1.1
See Also:
Constant Field Values

ANTENNA2_DATA_KEY

static final java.lang.String ANTENNA2_DATA_KEY
The value stored at the "antenna2" key of the read-event map is the antenna 2 optional information. The value of this field is "antenna2"

Since:
1.1
See Also:
Constant Field Values

ANTENNA3_DATA_KEY

static final java.lang.String ANTENNA3_DATA_KEY
The value stored at the "antenna3" key of the read-event map is the antenna 3 optional information. The value of this field is "antenna3"

Since:
1.1
See Also:
Constant Field Values

ANTENNA4_DATA_KEY

static final java.lang.String ANTENNA4_DATA_KEY
The value stored at the "antenna4" key of the read-event map is the antenna 4 optional information. The value of this field is "antenna4"

Since:
1.1
See Also:
Constant Field Values

BATTERY_DATA_KEY

static final java.lang.String BATTERY_DATA_KEY
The value stored at the "battery" key of the read-event map is the optional battery information. The value of this field is "battery"

Since:
1.1
See Also:
Constant Field Values

BATTERY_CHARGE_LEVEL_DATA_KEY

static final java.lang.String BATTERY_CHARGE_LEVEL_DATA_KEY
The value stored at the "batteryChargeLevel" key of the "battery" map is the optional battery charge level information. The value is a percent of the charge level with 0 being no charge and 1. 0 being charge level full. . The value of this field is "batteryChargeLevel"

Since:
1.2
See Also:
Constant Field Values

BATTERY_REMAINING_TIME_DATA_KEY

static final java.lang.String BATTERY_REMAINING_TIME_DATA_KEY
The value stored at the "batteryRemainingTime" key of the "battery" map is the optional battery remaining time information. . The value of this field is "batteryRemainingTime"

Since:
1.2
See Also:
Constant Field Values

BATTERY_REMAINING_CAPACITY_DATA_KEY

static final java.lang.String BATTERY_REMAINING_CAPACITY_DATA_KEY
The value stored at the "batteryRemainingCapacity" key of the "battery" map is the optional battery remaining capacity information. . The value of this field is "batteryRemainingCapacity"

Since:
1.2
See Also:
Constant Field Values

EPC_URI_DATA_KEY

static final java.lang.String EPC_URI_DATA_KEY
The value stored at the "epcURI" key of the read-event map is the optional EPC URI value. The value of this field is "epcURI"

Since:
1.1
See Also:
Constant Field Values

KILL_PWD_DATA_KEY

static final java.lang.String KILL_PWD_DATA_KEY
The value stored at the "killPwd" key of the read-event map is the optional kill password value. The value of this field is "killPwd"

Since:
1.1
See Also:
Constant Field Values

ACCESS_PWD_DATA_KEY

static final java.lang.String ACCESS_PWD_DATA_KEY
The value stored at the "accessPwd" key of the read-event map is the optional access password value. . The value of this field is "accessPwd"

Since:
1.1
See Also:
Constant Field Values

EPC_BANK_DATA_KEY

static final java.lang.String EPC_BANK_DATA_KEY
The value stored at the "epcBank" key of the read-event map is the optional epc bank value. The value of this field is "epcBank"

Since:
1.1
See Also:
Constant Field Values

TID_BANK_DATA_KEY

static final java.lang.String TID_BANK_DATA_KEY
The value stored at the "tidBank" key of the read-event map is the optional TID bank value. The value of this field is "tidBank"

Since:
1.1
See Also:
Constant Field Values

USER_BANK_DATA_KEY

static final java.lang.String USER_BANK_DATA_KEY
The value stored at the "userBank" key of the read-event map is the optional user bank value. The value of this field is "userBank"

Since:
1.1
See Also:
Constant Field Values

AFI_DATA_KEY

static final java.lang.String AFI_DATA_KEY
The value stored at the "afi" key of the read-event map is the optional ISO Application Family Identifier (AFI) value. . The value of this field is "afi"

Since:
1.1
See Also:
Constant Field Values

NSI_DATA_KEY

static final java.lang.String NSI_DATA_KEY
The value stored at the "nsi" key of the read-event map is the optional Numbering System Identifier (NSI) bank value. . The value of this field is "nsi"

Since:
1.1
See Also:
Constant Field Values

TAG_TYPE_DATA_KEY

static final java.lang.String TAG_TYPE_DATA_KEY
The value stored at the "tagType" key of the read-event map is the optional tag type value. If the tag type is an RFID Tag, then the value should start with "rfid". if the tag type is a barcode, then the value should start with a "barcode". . The value of this field is "tagType"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MINIMUM_STANDARD_SCORE_DATA_KEY

static final java.lang.String PEAK_RSSI_MINIMUM_STANDARD_SCORE_DATA_KEY
The value stored at the "peakRSSIMinimumStandardScore" key of the read-event map is the minimum peak standard score (z-score). [Optional]. The value of this field is "peakRSSIMinimumStandardScore"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MAXIMUM_STANDARD_SCORE_DATA_KEY

static final java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_SCORE_DATA_KEY
The value stored at the "peakRSSIMaximumStandardScore" key of the read-event map is the maximum peak standard score (z-score). [Optional]. The value of this field is "peakRSSIMaximumStandardScore"

Since:
1.1
See Also:
Constant Field Values

SUMMARY_DATA_KEY

static final java.lang.String SUMMARY_DATA_KEY
The value stored at the "summary" key of the TagReport is a map which contains the summary information about the tags. . The value of this field is "summary"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MINIMUM_MEDIAN_DATA_KEY

static final java.lang.String PEAK_RSSI_MINIMUM_MEDIAN_DATA_KEY
The value stored at the "peakRSSIMinimumMedian" key of the read-event map is the peak received power of the EPC backscatter in dBM mean value. [Optional]. The value of this field is "peakRSSIMinimumMedian"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MAXIMUM_MEDIAN_DATA_KEY

static final java.lang.String PEAK_RSSI_MAXIMUM_MEDIAN_DATA_KEY
The value stored at the "peakRSSIMaximumMedian" key of the read-event map is the maximum peak received power of the EPC backscatter in dBM mean value. [Optional]. The value of this field is "peakRSSIMaximumMedian"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MINIMUM_AVERAGE_DATA_KEY

static final java.lang.String PEAK_RSSI_MINIMUM_AVERAGE_DATA_KEY
The value stored at the "peakRSSIMinimumAverage" key of the read-event map is the minimum peak average received power of the EPC backscatter in dBM mean value. [Optional]. The value of this field is "peakRSSIMinimumAverage"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MAXIMUM_AVERAGE_DATA_KEY

static final java.lang.String PEAK_RSSI_MAXIMUM_AVERAGE_DATA_KEY
The value stored at the "peakRSSIMaximumAverage" key of the read-event map is the maximum peak average received power of the EPC backscatter in dBM mean value. [Optional]. The value of this field is "peakRSSIMaximumAverage"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MINIMUM_STANDARD_DEVIATION_DATA_KEY

static final java.lang.String PEAK_RSSI_MINIMUM_STANDARD_DEVIATION_DATA_KEY
The value stored at the "peakRSSIMinimumStandardDeviation" key of the read-event map is the minimum peak standard deviation. [Optional]. The value of this field is "peakRSSIMinimumStandardDeviation"

Since:
1.1
See Also:
Constant Field Values

PEAK_RSSI_MAXIMUM_STANDARD_DEVIATION_DATA_KEY

static final java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_DEVIATION_DATA_KEY
The value stored at the "peakRSSIMaximumStandardDeviation" key of the read-event map is the maximum peak standard deviation. [Optional]. The value of this field is "peakRSSIMaximumStandardDeviation"

Since:
1.1
See Also:
Constant Field Values

TAG_COUNT_DATA_KEY

static final java.lang.String TAG_COUNT_DATA_KEY
The value stored at the "tagCount" key is the count of tags included in the report. The value of this field is "tagCount"

Since:
1.1
See Also:
Constant Field Values

COUNT_AVERAGE_DATA_KEY

static final java.lang.String COUNT_AVERAGE_DATA_KEY
The value stored at the "countAverage" key is the count of all tag reads divided by the tag count. The value of this field is "countAverage"

Since:
1.1
See Also:
Constant Field Values

READERS_MAP_DATA_KEY

static final java.lang.String READERS_MAP_DATA_KEY
The value stored at the "readersMap" key is map containing information about each reader. The value of this field is "readersMap"

Since:
1.1
See Also:
Constant Field Values

ANTENNAS_MAP_DATA_KEY

static final java.lang.String ANTENNAS_MAP_DATA_KEY
The value stored at the "antennasMap" key is map containing information about each antenna. The value of this field is "antennasMap"

Since:
1.1
See Also:
Constant Field Values

REPORTS_MAP_DATA_KEY

static final java.lang.String REPORTS_MAP_DATA_KEY
The value stored at the "reportsMap" key is map containing information about each reader report. The value of this field is "reportsMap"

Since:
1.1
See Also:
Constant Field Values

VENDOR_EXTENSIONS_DATA_KEY

static final java.lang.String VENDOR_EXTENSIONS_DATA_KEY
The value stored at the "vendorExtensions" key of the read-event map is the List of custom parameters. The value of each element is a Map with keys "VendorIdentifier", "ParameterSubtype" and "VendorParameterValue". . The value of this field is "vendorExtensions"

Since:
1.1
See Also:
Constant Field Values

VENDOR_IDENTIFIER_DATA_KEY

static final java.lang.String VENDOR_IDENTIFIER_DATA_KEY
The value stored at the "VendorIdentifier" key of customParameter map is the Vendor ID in the custom parameter. . The value of this field is "VendorIdentifier"

Since:
1.1
See Also:
Constant Field Values

PARAMETER_SUBTYPE_DATA_KEY

static final java.lang.String PARAMETER_SUBTYPE_DATA_KEY
The value stored at the "ParameterSubtype" key of customParameter map is the SubType in the custom parameter. . The value of this field is "ParameterSubtype"

Since:
1.1
See Also:
Constant Field Values

VENDOR_PARAMETER_VALUE_DATA_KEY

static final java.lang.String VENDOR_PARAMETER_VALUE_DATA_KEY
The value stored at the "VendorParameterValue" key of customParameter map is the VendorParameter Value in the custom parameter. . The value of this field is "VendorParameterValue"

Since:
1.1
See Also:
Constant Field Values

SUB_CYCLE_NUM_DATA_KEY

static final java.lang.String SUB_CYCLE_NUM_DATA_KEY
If the tagReadingSubCycleMode is not "null", the value stores the sub cycle number the tag is read. The value of this field is "subCycleNum"

Since:
1.2
See Also:
Constant Field Values

TOTAL_SUB_CYCLES_DATA_KEY

static final java.lang.String TOTAL_SUB_CYCLES_DATA_KEY
If the tagReadingSubCycleMode is not "null", the value stores the total sub cycle numbers. The value of this field is "totalSubCycles"

Since:
1.2
See Also:
Constant Field Values

CONFIDENCE_DATA_KEY

static final java.lang.String CONFIDENCE_DATA_KEY
The value stored at the "confidence" key of the read-event map is the optional confidence value. The higher the confidence value the more likely the tag was meant to be included in the aggregation. If the confidence is zero, then we are unsure if the tag should be included. If the confidence is less than zero, it is unlikely that the tag should be included. The more negative the confidence value, then less likely the tag should be included. . The value of this field is "confidence"

Since:
1.1
See Also:
Constant Field Values

READ_STOP_TIMEOUT

static final java.lang.String READ_STOP_TIMEOUT
Custom parameter read stop timeout configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.1
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_MODE

static final java.lang.String TAG_READING_SUB_CYCLE_MODE
Custom parameter tag reading sub cycle mode configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_NUM

static final java.lang.String TAG_READING_SUB_CYCLE_NUM
Custom parameter tag reading sub cycle num configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_LENGTH

static final java.lang.String TAG_READING_SUB_CYCLE_LENGTH
Custom parameter tag reading sub cycle length configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_DELTA

static final java.lang.String TAG_READING_SUB_CYCLE_DELTA
Custom parameter tag reading sub cycle delta configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_INTERVAL

static final java.lang.String TAG_READING_SUB_CYCLE_INTERVAL
Custom parameter tag reading sub cycle interval configuration key. The key in the OSGI-INF/metatype/Metadata.xml file must match this field.

Since:
1.2
See Also:
Constant Field Values

READ_STOP_TIMEOUT_DEFAULT

static final int READ_STOP_TIMEOUT_DEFAULT
readStopTimeout is a configuration parameter to specify the timeout period in milliseconds that the profile will wait to receive an acknowledgment from the reader after commanding the reader to stop reading. The profile updates the TagReading measurement to "false" after either a response is received from the reader device or the time specified in readStopTimeout elapses. .

Since:
1.1
See Also:
Constant Field Values

READ_STOP_TIMEOUT_PROPERTY

static final java.lang.String READ_STOP_TIMEOUT_PROPERTY
readStopTimeout is a configuration parameter to specify the timeout period in milliseconds that the profile will wait to receive an acknowledgment from the reader after commanding the reader to stop reading. The profile updates the TagReading measurement to "false" after either a response is received from the reader device or the time specified in readStopTimeout elapses. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_MODE_DEFAULT

static final java.lang.String TAG_READING_SUB_CYCLE_MODE_DEFAULT
tagReadingSubCycleMode is a configuration parameter to specify that if one tag reading cycle should contain sub cycles. The value options: "null", "auto", "period". null: the feature is disabled. auto: the sub cycles are turned on and off based on the repeated tag reports. period: each sub cycle is turned on for a fixed period of time. .

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_MODE_PROPERTY

static final java.lang.String TAG_READING_SUB_CYCLE_MODE_PROPERTY
tagReadingSubCycleMode is a configuration parameter to specify that if one tag reading cycle should contain sub cycles. The value options: "null", "auto", "period". null: the feature is disabled. auto: the sub cycles are turned on and off based on the repeated tag reports. period: each sub cycle is turned on for a fixed period of time. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_NUM_DEFAULT

static final int TAG_READING_SUB_CYCLE_NUM_DEFAULT
tagReadingSubCycleNum is a configuration parameter to specify the number of the sub cycles in each reading cycle, it is only applicable when "tagReadingSubCycleMode" is not "null". There will be unlimited cycles if the number is less than or equal to 0. .

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_NUM_PROPERTY

static final java.lang.String TAG_READING_SUB_CYCLE_NUM_PROPERTY
tagReadingSubCycleNum is a configuration parameter to specify the number of the sub cycles in each reading cycle, it is only applicable when "tagReadingSubCycleMode" is not "null". There will be unlimited cycles if the number is less than or equal to 0. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_LENGTH_DEFAULT

static final long TAG_READING_SUB_CYCLE_LENGTH_DEFAULT
tagReadingSubCycleLength is a configuration parameter to specify the period length in milliseconds for each sub cycle, for "auto" mode, it is the timeout value. .

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_LENGTH_PROPERTY

static final java.lang.String TAG_READING_SUB_CYCLE_LENGTH_PROPERTY
tagReadingSubCycleLength is a configuration parameter to specify the period length in milliseconds for each sub cycle, for "auto" mode, it is the timeout value. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_DELTA_DEFAULT

static final long TAG_READING_SUB_CYCLE_DELTA_DEFAULT
tagReadingSubCycleDelta specifies that if the time between the two reports of any tag exceeds this parameter, the sub cycle will be stopped. .

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_DELTA_PROPERTY

static final java.lang.String TAG_READING_SUB_CYCLE_DELTA_PROPERTY
tagReadingSubCycleDelta specifies that if the time between the two reports of any tag exceeds this parameter, the sub cycle will be stopped. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_INTERVAL_DEFAULT

static final long TAG_READING_SUB_CYCLE_INTERVAL_DEFAULT
tagReadingSubCycleInterval specifies the period length of the interval between sub cycles, no interval if the value is less than or equal to 0. .

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_INTERVAL_PROPERTY

static final java.lang.String TAG_READING_SUB_CYCLE_INTERVAL_PROPERTY
tagReadingSubCycleInterval specifies the period length of the interval between sub cycles, no interval if the value is less than or equal to 0. . The key in the esc.property file must match this field.

Since:
1.2
See Also:
Constant Field Values

SERVICE_DESCRIPTION

static final java.lang.String SERVICE_DESCRIPTION
Description of the test.

Since:
1.1
See Also:
Constant Field Values

Status

static final java.lang.String Status
Define the RFID Inventory Profile Status measurement.

Since:
1.0
See Also:
Constant Field Values

STATUS_EXTERNAL_KEY

static final java.lang.String STATUS_EXTERNAL_KEY
Define the RFID Inventory Profile Status measurement.

Since:
1.0
See Also:
Constant Field Values

STATUS_GET_EXTERNAL_KEY

static final java.lang.String STATUS_GET_EXTERNAL_KEY
Define the RFID Inventory Profile Status measurement.

Since:
1.0

STATUS_ERROR_EXTERNAL_KEY

static final java.lang.String STATUS_ERROR_EXTERNAL_KEY
Define the RFID Inventory Profile Status measurement.

Since:
1.0
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventoryProfile/Status/error"

Configuration

static final java.lang.String Configuration
Define the RFID Inventory Profile Configuration measurement.

Since:
1.0
See Also:
Constant Field Values

CONFIGURATION_EXTERNAL_KEY

static final java.lang.String CONFIGURATION_EXTERNAL_KEY
Define the RFID Inventory Profile Configuration measurement.

Since:
1.0
See Also:
Constant Field Values

CONFIGURATION_GET_EXTERNAL_KEY

static final java.lang.String CONFIGURATION_GET_EXTERNAL_KEY
Define the RFID Inventory Profile Configuration measurement.

Since:
1.0

CONFIGURATION_ERROR_EXTERNAL_KEY

static final java.lang.String CONFIGURATION_ERROR_EXTERNAL_KEY
Define the RFID Inventory Profile Configuration measurement.

Since:
1.0
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventoryProfile/Configuration/error"

Capabilities

static final java.lang.String Capabilities
Define the RFID Inventory Profile Capabilities measurement.

Since:
1.0
See Also:
Constant Field Values

CAPABILITIES_EXTERNAL_KEY

static final java.lang.String CAPABILITIES_EXTERNAL_KEY
Define the RFID Inventory Profile Capabilities measurement.

Since:
1.0
See Also:
Constant Field Values

CAPABILITIES_GET_EXTERNAL_KEY

static final java.lang.String CAPABILITIES_GET_EXTERNAL_KEY
Define the RFID Inventory Profile Capabilities measurement.

Since:
1.0

CAPABILITIES_ERROR_EXTERNAL_KEY

static final java.lang.String CAPABILITIES_ERROR_EXTERNAL_KEY
Define the RFID Inventory Profile Capabilities measurement.

Since:
1.0
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventoryProfile/Capabilities/error"

Metrics

static final java.lang.String Metrics
Define the RFID Inventory Profile Metrics measurement.

Since:
1.1
See Also:
Constant Field Values

METRICS_EXTERNAL_KEY

static final java.lang.String METRICS_EXTERNAL_KEY
Define the RFID Inventory Profile Metrics measurement.

Since:
1.1
See Also:
Constant Field Values

METRICS_GET_EXTERNAL_KEY

static final java.lang.String METRICS_GET_EXTERNAL_KEY
Define the RFID Inventory Profile Metrics measurement.

Since:
1.1

METRICS_ERROR_EXTERNAL_KEY

static final java.lang.String METRICS_ERROR_EXTERNAL_KEY
Define the RFID Inventory Profile Metrics measurement.

Since:
1.1
See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY, value of this field is "prefix/RfidInventoryProfile/Metrics/error"

TAG_READING_SUB_CYCLE_MODE_AUTO

static final java.lang.String TAG_READING_SUB_CYCLE_MODE_AUTO
Define the tag reading sub cycle mode auto (String) constant.

Since:
1.2
See Also:
Constant Field Values

TAG_READING_SUB_CYCLE_MODE_PERIOD

static final java.lang.String TAG_READING_SUB_CYCLE_MODE_PERIOD
Define the tag reading sub cycle mode period (String) constant.

Since:
1.2
See Also:
Constant Field Values

TAGREADING_SUBCYCLE_MODE_AUTO

static final java.lang.String TAGREADING_SUBCYCLE_MODE_AUTO
Define the tagreading subcycle mode auto (String) constant.

Since:
1.2
See Also:
Constant Field Values

TAGREADING_SUBCYCLE_MODE_NULL

static final java.lang.String TAGREADING_SUBCYCLE_MODE_NULL
Define the tagreading subcycle mode null (String) constant.

Since:
1.2
See Also:
Constant Field Values

TAGREADING_SUBCYCLE_MODE_PERIOD

static final java.lang.String TAGREADING_SUBCYCLE_MODE_PERIOD
Define the tagreading subcycle mode period (String) constant.

Since:
1.2
See Also:
Constant Field Values

2009-10-01 1.2.0

Copyright (c) 2009 IBM. See license in Legal section.