|
2008-07-29 1.1.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface RfidInventoryProfileService
RfidInventoryProfile controls 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. The device service interface defines the service to be registered for the RfidInventoryProfile device.
The following measurements are supported:
| TagReadingExpression | The TagReadingExpression is an 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. 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. 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 write operations block against the tag(s). A write operation block can contain multiple write operations separated by the character ":". A write 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 interger 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. |
| ConfidenceScript | The "ConfidenceScript" is script to compute the "confidence" value. |
The following signals are supported:
| TagReport | 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 | 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 metadata stored at the "dataExtensions" key. See the tags and dataExtensions descriptions for details. |
The list of exported services:
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 |
ACCESSPWD_DATA_KEY
Deprecated. use ACCESS_PWD_DATA_KEY |
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 |
AGGREGATIONFILTEREXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFILTEREXPRESSION_EXTERNAL_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFILTEREXPRESSION_GET_EXTERNAL_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFILTEREXPRESSION_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_KEY |
static java.lang.String |
AGGREGATIONFILTEREXPRESSION_READ_EXTERNAL_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFILTEREXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use AGGREGATION_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY |
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 |
AGGREGATIONFINALFILTEREXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFINALFILTEREXPRESSION_EXTERNAL_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFINALFILTEREXPRESSION_GET_EXTERNAL_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFINALFILTEREXPRESSION_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_KEY |
static java.lang.String |
AGGREGATIONFINALFILTEREXPRESSION_READ_EXTERNAL_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONFINALFILTEREXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use AGGREGATION_FINAL_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY |
static java.lang.String |
AggregationMaskSetting
The AggregationMaskSetting specifies the definition of tags that should be published on the TagAggregationReport signal. |
static java.lang.String |
AGGREGATIONMASKSETTING_ERROR_EXTERNAL_KEY
Deprecated. use AGGREGATION_MASK_SETTING_ERROR_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONMASKSETTING_EXTERNAL_KEY
Deprecated. use AGGREGATION_MASK_SETTING_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONMASKSETTING_GET_EXTERNAL_KEY
Deprecated. use AGGREGATION_MASK_SETTING_GET_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONMASKSETTING_KEY
Deprecated. use AGGREGATION_MASK_SETTING_KEY |
static java.lang.String |
AGGREGATIONMASKSETTING_READ_EXTERNAL_KEY
Deprecated. use AGGREGATION_MASK_SETTING_READ_EXTERNAL_KEY |
static java.lang.String |
AGGREGATIONMASKSETTING_WRITE_EXTERNAL_KEY
Deprecated. use AGGREGATION_MASK_SETTING_WRITE_EXTERNAL_KEY |
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 |
ANTENNACOUNT_ERROR_EXTERNAL_KEY
Deprecated. use ANTENNA_COUNT_ERROR_EXTERNAL_KEY |
static java.lang.String |
ANTENNACOUNT_EXTERNAL_KEY
Deprecated. use ANTENNA_COUNT_EXTERNAL_KEY |
static java.lang.String |
ANTENNACOUNT_GET_EXTERNAL_KEY
Deprecated. use ANTENNA_COUNT_GET_EXTERNAL_KEY |
static java.lang.String |
ANTENNACOUNT_KEY
Deprecated. use ANTENNA_COUNT_KEY |
static java.lang.String |
ANTENNACOUNT_READ_EXTERNAL_KEY
Deprecated. use ANTENNA_COUNT_READ_EXTERNAL_KEY |
static java.lang.String |
ANTENNACOUNT_WRITE_EXTERNAL_KEY
Deprecated. use ANTENNA_COUNT_WRITE_EXTERNAL_KEY |
static java.lang.String |
ANTENNAREPORTCOUNT_DATA_KEY
Deprecated. use ANTENNA_REPORT_COUNT_DATA_KEY |
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 |
ANTENNASMAP_DATA_KEY
Deprecated. use ANTENNAS_MAP_DATA_KEY |
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 |
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 |
CHANNELINDEX_DATA_KEY
Deprecated. use CHANNEL_INDEX_DATA_KEY |
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 |
CONFIDENCESCRIPT_ERROR_EXTERNAL_KEY
Deprecated. use CONFIDENCE_SCRIPT_ERROR_EXTERNAL_KEY |
static java.lang.String |
CONFIDENCESCRIPT_EXTERNAL_KEY
Deprecated. use CONFIDENCE_SCRIPT_EXTERNAL_KEY |
static java.lang.String |
CONFIDENCESCRIPT_GET_EXTERNAL_KEY
Deprecated. use CONFIDENCE_SCRIPT_GET_EXTERNAL_KEY |
static java.lang.String |
CONFIDENCESCRIPT_KEY
Deprecated. use CONFIDENCE_SCRIPT_KEY |
static java.lang.String |
CONFIDENCESCRIPT_READ_EXTERNAL_KEY
Deprecated. use CONFIDENCE_SCRIPT_READ_EXTERNAL_KEY |
static java.lang.String |
CONFIDENCESCRIPT_WRITE_EXTERNAL_KEY
Deprecated. use CONFIDENCE_SCRIPT_WRITE_EXTERNAL_KEY |
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 |
COUNTAVERAGE_DATA_KEY
Deprecated. use COUNT_AVERAGE_DATA_KEY |
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 |
DATAEXTENSIONS_DATA_KEY
Deprecated. use DATA_EXTENSIONS_DATA_KEY |
static java.lang.String |
DATAEXTENSIONS_ERROR_EXTERNAL_KEY
Deprecated. use DATA_EXTENSIONS_ERROR_EXTERNAL_KEY |
static java.lang.String |
DATAEXTENSIONS_EXTERNAL_KEY
Deprecated. use DATA_EXTENSIONS_EXTERNAL_KEY |
static java.lang.String |
DATAEXTENSIONS_GET_EXTERNAL_KEY
Deprecated. use DATA_EXTENSIONS_GET_EXTERNAL_KEY |
static java.lang.String |
DATAEXTENSIONS_READ_EXTERNAL_KEY
Deprecated. use DATA_EXTENSIONS_READ_EXTERNAL_KEY |
static java.lang.String |
DATAEXTENSIONS_WRITE_EXTERNAL_KEY
Deprecated. use DATA_EXTENSIONS_WRITE_EXTERNAL_KEY |
static int |
DEFAULT_READSTOPTIMEOUT
Custom parameter readStopTimeout configuration default value. |
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 |
DUPLICATEFILTERING_ERROR_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_ERROR_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERING_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERING_GET_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_GET_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERING_READ_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_READ_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERING_WRITE_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_WRITE_EXTERNAL_KEY |
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 |
DUPLICATEFILTERINGEXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERINGEXPRESSION_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERINGEXPRESSION_GET_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERINGEXPRESSION_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_KEY |
static java.lang.String |
DUPLICATEFILTERINGEXPRESSION_READ_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
DUPLICATEFILTERINGEXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use DUPLICATE_FILTERING_EXPRESSION_WRITE_EXTERNAL_KEY |
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 |
EPCBANK_DATA_KEY
Deprecated. use EPC_BANK_DATA_KEY |
static java.lang.String |
EPCURI_DATA_KEY
Deprecated. use EPC_URI_DATA_KEY |
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 |
KILLPWD_DATA_KEY
Deprecated. use KILL_PWD_DATA_KEY |
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 |
LLRPACCESSSPECID_DATA_KEY
Deprecated. use LLRP_ACCESS_SPEC_ID_DATA_KEY |
static java.lang.String |
LLRPAIRPROTOCOLTAGDATA_DATA_KEY
Deprecated. use LLRP_AIR_PROTOCOL_TAG_DATA_DATA_KEY |
static java.lang.String |
LLRPINVENTORYPARAMETERSPECID_DATA_KEY
Deprecated. use LLRP_INVENTORY_PARAMETER_SPEC_ID_DATA_KEY |
static java.lang.String |
LLRPOPSPECNUMWORDSWRITTEN_DATA_KEY
Deprecated. use LLRP_OP_SPEC_NUM_WORDS_WRITTEN_DATA_KEY |
static java.lang.String |
LLRPOPSPECREADDATA_DATA_KEY
Deprecated. use LLRP_OP_SPEC_READ_DATA_DATA_KEY |
static java.lang.String |
LLRPOPSPECRESULT_DATA_KEY
Deprecated. use LLRP_OP_SPEC_RESULT_DATA_KEY |
static java.lang.String |
LLRPOPSPECRESULTCODE_DATA_KEY
Deprecated. use LLRP_OP_SPEC_RESULT_CODE_DATA_KEY |
static java.lang.String |
LLRPROSPECID_DATA_KEY
Deprecated. use LLRP_RO_SPEC_ID_DATA_KEY |
static java.lang.String |
LLRPSPECINDEX_DATA_KEY
Deprecated. use LLRP_SPEC_INDEX_DATA_KEY |
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 |
PARAMETERSUBTYPE_DATA_KEY
Deprecated. use PARAMETER_SUBTYPE_DATA_KEY |
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 |
PEAKRSSI_DATA_KEY
Deprecated. use PEAK_RSSI_DATA_KEY |
static java.lang.String |
PEAKRSSIAVERAGE_DATA_KEY
Deprecated. use PEAK_RSSI_AVERAGE_DATA_KEY |
static java.lang.String |
PEAKRSSIMAXIMUM_DATA_KEY
Deprecated. use PEAK_RSSI_MAXIMUM_DATA_KEY |
static java.lang.String |
PEAKRSSIMAXIMUMAVERAGE_DATA_KEY
Deprecated. use PEAK_RSSI_MAXIMUM_AVERAGE_DATA_KEY |
static java.lang.String |
PEAKRSSIMAXIMUMMEDIAN_DATA_KEY
Deprecated. use PEAK_RSSI_MAXIMUM_MEDIAN_DATA_KEY |
static java.lang.String |
PEAKRSSIMAXIMUMSTANDARDDEVIATION_DATA_KEY
Deprecated. use PEAK_RSSI_MAXIMUM_STANDARD_DEVIATION_DATA_KEY |
static java.lang.String |
PEAKRSSIMAXIMUMSTANDARDSCORE_DATA_KEY
Deprecated. use PEAK_RSSI_MAXIMUM_STANDARD_SCORE_DATA_KEY |
static java.lang.String |
PEAKRSSIMINIMUM_DATA_KEY
Deprecated. use PEAK_RSSI_MINIMUM_DATA_KEY |
static java.lang.String |
PEAKRSSIMINIMUMAVERAGE_DATA_KEY
Deprecated. use PEAK_RSSI_MINIMUM_AVERAGE_DATA_KEY |
static java.lang.String |
PEAKRSSIMINIMUMMEDIAN_DATA_KEY
Deprecated. use PEAK_RSSI_MINIMUM_MEDIAN_DATA_KEY |
static java.lang.String |
PEAKRSSIMINIMUMSTANDARDDEVIATION_DATA_KEY
Deprecated. use PEAK_RSSI_MINIMUM_STANDARD_DEVIATION_DATA_KEY |
static java.lang.String |
PEAKRSSIMINIMUMSTANDARDSCORE_DATA_KEY
Deprecated. use PEAK_RSSI_MINIMUM_STANDARD_SCORE_DATA_KEY |
static java.lang.String |
PEAKRSSIRANGE_DATA_KEY
Deprecated. use PEAK_RSSI_RANGE_DATA_KEY |
static java.lang.String |
PEAKRSSITOTAL_DATA_KEY
Deprecated. use PEAK_RSSI_TOTAL_DATA_KEY |
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 write operations block against the tag(s). |
static java.lang.String |
READ_OPERATIONS_EXTERNAL_KEY
The ReadOperations specifies the definition of write operations block against the tag(s). |
static java.lang.String |
READ_OPERATIONS_GET_EXTERNAL_KEY
The ReadOperations specifies the definition of write 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 write operations block against the tag(s). |
static java.lang.String |
READ_OPERATIONS_WRITE_EXTERNAL_KEY
The ReadOperations specifies the definition of write operations block against the tag(s). |
static java.lang.String |
READ_STOP_TIMEOUT
Custom parameter readStopTimeout configuration key. |
static int |
READ_STOP_TIMEOUT_DEFAULT
Custom parameter readStopTimeout configuration default value. |
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 |
READERSMAP_DATA_KEY
Deprecated. use READERS_MAP_DATA_KEY |
static java.lang.String |
ReadOperations
The ReadOperations specifies the definition of write operations block against the tag(s). |
static java.lang.String |
READOPERATIONS_ERROR_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_ERROR_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONS_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONS_GET_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_GET_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONS_KEY
Deprecated. use READ_OPERATIONS_KEY |
static java.lang.String |
READOPERATIONS_READ_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_READ_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONS_WRITE_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_WRITE_EXTERNAL_KEY |
static java.lang.String |
ReadOperationsCount
The ReadOperationsCount measurement defines the number of read operations supported by this profile. |
static java.lang.String |
READOPERATIONSCOUNT_ERROR_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_COUNT_ERROR_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONSCOUNT_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_COUNT_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONSCOUNT_GET_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_COUNT_GET_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONSCOUNT_KEY
Deprecated. use READ_OPERATIONS_COUNT_KEY |
static java.lang.String |
READOPERATIONSCOUNT_READ_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_COUNT_READ_EXTERNAL_KEY |
static java.lang.String |
READOPERATIONSCOUNT_WRITE_EXTERNAL_KEY
Deprecated. use READ_OPERATIONS_COUNT_WRITE_EXTERNAL_KEY |
static int |
READSTOPTIMEOUT_DEFAULT
Deprecated. use READ_STOP_TIMEOUT_DEFAULT |
static java.lang.String |
READSTOPTIMEOUT_KEY
Deprecated. use READ_STOP_TIMEOUT |
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 |
REPORTSMAP_DATA_KEY
Deprecated. use REPORTS_MAP_DATA_KEY |
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 |
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 |
SUPERCACHEMAXIMUMSIZE_ERROR_EXTERNAL_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_ERROR_EXTERNAL_KEY |
static java.lang.String |
SUPERCACHEMAXIMUMSIZE_EXTERNAL_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_EXTERNAL_KEY |
static java.lang.String |
SUPERCACHEMAXIMUMSIZE_GET_EXTERNAL_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_GET_EXTERNAL_KEY |
static java.lang.String |
SUPERCACHEMAXIMUMSIZE_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_KEY |
static java.lang.String |
SUPERCACHEMAXIMUMSIZE_READ_EXTERNAL_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_READ_EXTERNAL_KEY |
static java.lang.String |
SUPERCACHEMAXIMUMSIZE_WRITE_EXTERNAL_KEY
Deprecated. use SUPER_CACHE_MAXIMUM_SIZE_WRITE_EXTERNAL_KEY |
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
TagAggregationReport is a signal containing a collection of tag data in a map structure. |
static java.lang.String |
TAG_AGGREGATION_REPORT_EXTERNAL_KEY
TagAggregationReport is a signal containing a collection of tag data in a map structure. |
static java.lang.String |
TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
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 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 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 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 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 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_WRITE_EXTERNAL_KEY
The TagReading measurement specifies the state of reading behavior. |
static java.lang.String |
TAG_REPORT_ERROR_EXTERNAL_KEY
TagReport is a signal containing tag data in a map structure. |
static java.lang.String |
TAG_REPORT_EXTERNAL_KEY
TagReport is a signal containing tag data in a map structure. |
static java.lang.String |
TAG_REPORT_TRIGGER_EXTERNAL_KEY
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 |
TAGAGGREGATING_ERROR_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATING_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATING_GET_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_GET_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATING_READ_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_READ_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATING_WRITE_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_WRITE_EXTERNAL_KEY |
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 |
TAGAGGREGATINGEXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATINGEXPRESSION_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATINGEXPRESSION_GET_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATINGEXPRESSION_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_KEY |
static java.lang.String |
TAGAGGREGATINGEXPRESSION_READ_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATINGEXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagAggregationReport
TagAggregationReport is a signal containing a collection of tag data in a map structure. |
static java.lang.String |
TAGAGGREGATIONREPORT_ERROR_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATIONREPORT_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATION_REPORT_EXTERNAL_KEY |
static java.lang.String |
TAGAGGREGATIONREPORT_TRIGGER_EXTERNAL_KEY
Deprecated. use TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY |
static java.lang.String |
TagAntennaReportLevel
The TagAntennaReportLevel measurement specifies the level of tag antenna reporting. |
static java.lang.String |
TAGANTENNAREPORTLEVEL_ERROR_EXTERNAL_KEY
Deprecated. use TAG_ANTENNA_REPORT_LEVEL_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGANTENNAREPORTLEVEL_EXTERNAL_KEY
Deprecated. use TAG_ANTENNA_REPORT_LEVEL_EXTERNAL_KEY |
static java.lang.String |
TAGANTENNAREPORTLEVEL_GET_EXTERNAL_KEY
Deprecated. use TAG_ANTENNA_REPORT_LEVEL_GET_EXTERNAL_KEY |
static java.lang.String |
TAGANTENNAREPORTLEVEL_READ_EXTERNAL_KEY
Deprecated. use TAG_ANTENNA_REPORT_LEVEL_READ_EXTERNAL_KEY |
static java.lang.String |
TAGANTENNAREPORTLEVEL_WRITE_EXTERNAL_KEY
Deprecated. use TAG_ANTENNA_REPORT_LEVEL_WRITE_EXTERNAL_KEY |
static java.lang.String |
TAGCOUNT_DATA_KEY
Deprecated. use TAG_COUNT_DATA_KEY |
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 |
TAGFILTEREXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use TAG_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGFILTEREXPRESSION_EXTERNAL_KEY
Deprecated. use TAG_FILTER_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
TAGFILTEREXPRESSION_GET_EXTERNAL_KEY
Deprecated. use TAG_FILTER_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
TAGFILTEREXPRESSION_KEY
Deprecated. use TAG_FILTER_EXPRESSION_KEY |
static java.lang.String |
TAGFILTEREXPRESSION_READ_EXTERNAL_KEY
Deprecated. use TAG_FILTER_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
TAGFILTEREXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use TAG_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagMaskSetting
The TagMaskSetting specifies the definition of tags that should be published on the TagReport signal. |
static java.lang.String |
TAGMASKSETTING_ERROR_EXTERNAL_KEY
Deprecated. use TAG_MASK_SETTING_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGMASKSETTING_EXTERNAL_KEY
Deprecated. use TAG_MASK_SETTING_EXTERNAL_KEY |
static java.lang.String |
TAGMASKSETTING_GET_EXTERNAL_KEY
Deprecated. use TAG_MASK_SETTING_GET_EXTERNAL_KEY |
static java.lang.String |
TAGMASKSETTING_KEY
Deprecated. use TAG_MASK_SETTING_KEY |
static java.lang.String |
TAGMASKSETTING_READ_EXTERNAL_KEY
Deprecated. use TAG_MASK_SETTING_READ_EXTERNAL_KEY |
static java.lang.String |
TAGMASKSETTING_WRITE_EXTERNAL_KEY
Deprecated. use TAG_MASK_SETTING_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagPosition
The "TagPosition" measurement is a map of meta data to be associated with tag data. |
static java.lang.String |
TAGPOSITION_ERROR_EXTERNAL_KEY
Deprecated. use TAG_POSITION_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGPOSITION_EXTERNAL_KEY
Deprecated. use TAG_POSITION_EXTERNAL_KEY |
static java.lang.String |
TAGPOSITION_GET_EXTERNAL_KEY
Deprecated. use TAG_POSITION_GET_EXTERNAL_KEY |
static java.lang.String |
TAGPOSITION_READ_EXTERNAL_KEY
Deprecated. use TAG_POSITION_READ_EXTERNAL_KEY |
static java.lang.String |
TAGPOSITION_WRITE_EXTERNAL_KEY
Deprecated. use TAG_POSITION_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagReading
The TagReading measurement specifies the state of reading behavior. |
static java.lang.String |
TAGREADING_ERROR_EXTERNAL_KEY
Deprecated. use TAG_READING_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGREADING_EXTERNAL_KEY
Deprecated. use TAG_READING_EXTERNAL_KEY |
static java.lang.String |
TAGREADING_GET_EXTERNAL_KEY
Deprecated. use TAG_READING_GET_EXTERNAL_KEY |
static java.lang.String |
TAGREADING_READ_EXTERNAL_KEY
Deprecated. use TAG_READING_READ_EXTERNAL_KEY |
static java.lang.String |
TAGREADING_WRITE_EXTERNAL_KEY
Deprecated. use TAG_READING_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagReadingExpression
The TagReadingExpression is an LDAP expression to trigger the state of tag reading based on input pin and control values. |
static java.lang.String |
TAGREADINGEXPRESSION_ERROR_EXTERNAL_KEY
Deprecated. use TAG_READING_EXPRESSION_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGREADINGEXPRESSION_EXTERNAL_KEY
Deprecated. use TAG_READING_EXPRESSION_EXTERNAL_KEY |
static java.lang.String |
TAGREADINGEXPRESSION_GET_EXTERNAL_KEY
Deprecated. use TAG_READING_EXPRESSION_GET_EXTERNAL_KEY |
static java.lang.String |
TAGREADINGEXPRESSION_KEY
Deprecated. use TAG_READING_EXPRESSION_KEY |
static java.lang.String |
TAGREADINGEXPRESSION_READ_EXTERNAL_KEY
Deprecated. use TAG_READING_EXPRESSION_READ_EXTERNAL_KEY |
static java.lang.String |
TAGREADINGEXPRESSION_WRITE_EXTERNAL_KEY
Deprecated. use TAG_READING_EXPRESSION_WRITE_EXTERNAL_KEY |
static java.lang.String |
TagReport
TagReport is a signal containing tag data in a map structure. |
static java.lang.String |
TAGREPORT_ERROR_EXTERNAL_KEY
Deprecated. use TAG_REPORT_ERROR_EXTERNAL_KEY |
static java.lang.String |
TAGREPORT_EXTERNAL_KEY
Deprecated. use TAG_REPORT_EXTERNAL_KEY |
static java.lang.String |
TAGREPORT_TRIGGER_EXTERNAL_KEY
Deprecated. use TAG_REPORT_TRIGGER_EXTERNAL_KEY |
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 |
TAGTYPE_DATA_KEY
Deprecated. use TAG_TYPE_DATA_KEY |
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 |
TIDBANK_DATA_KEY
Deprecated. use TID_BANK_DATA_KEY |
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 |
TIMESTAMPFIRST_DATA_KEY
Deprecated. use TIMESTAMP_FIRST_DATA_KEY |
static java.lang.String |
TIMESTAMPFIRSTUPTIME_DATA_KEY
Deprecated. use TIMESTAMP_FIRST_UPTIME_DATA_KEY |
static java.lang.String |
TIMESTAMPLAST_DATA_KEY
Deprecated. use TIMESTAMP_LAST_DATA_KEY |
static java.lang.String |
TIMESTAMPLASTUPTIME_DATA_KEY
Deprecated. use TIMESTAMP_LAST_UPTIME_DATA_KEY |
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 |
USERBANK_DATA_KEY
Deprecated. use USER_BANK_DATA_KEY |
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. |
static java.lang.String |
VENDOREXTENSIONS_DATA_KEY
Deprecated. use VENDOR_EXTENSIONS_DATA_KEY |
static java.lang.String |
VENDORIDENTIFIER_DATA_KEY
Deprecated. use VENDOR_IDENTIFIER_DATA_KEY |
static java.lang.String |
VENDORPARAMETERVALUE_DATA_KEY
Deprecated. use VENDOR_PARAMETER_VALUE_DATA_KEY |
| Field Detail |
|---|
static final java.lang.String SERVICE_NAME
static final java.lang.String RfidInventoryProfile
static final java.lang.String TagReadingExpression
static final java.lang.String TAG_READING_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReadingExpression",
Constant Field Valuesstatic final java.lang.String TAGREADINGEXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReadingExpression",
Constant Field Valuesstatic final java.lang.String TAG_READING_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReadingExpression/get"static final java.lang.String TAGREADINGEXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReadingExpression/get"static final java.lang.String TAG_READING_EXPRESSION_READ_EXTERNAL_KEY
TagReadingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReadingExpression/read"static final java.lang.String TAGREADINGEXPRESSION_READ_EXTERNAL_KEY
TagReadingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReadingExpression/read"static final java.lang.String TAG_READING_EXPRESSION_WRITE_EXTERNAL_KEY
TagReadingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReadingExpression/write"static final java.lang.String TAGREADINGEXPRESSION_WRITE_EXTERNAL_KEY
TagReadingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReadingExpression/write"static final java.lang.String TAG_READING_EXPRESSION_ERROR_EXTERNAL_KEY
TagReadingExpression,
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,
The value of this field is "prefix/RfidInventory/TagReadingExpression/error"static final java.lang.String TAGREADINGEXPRESSION_ERROR_EXTERNAL_KEY
TagReadingExpression,
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,
The value of this field is "prefix/RfidInventory/TagReadingExpression/error"static final java.lang.String TAG_READING_EXPRESSION_KEY
static final java.lang.String TAGREADINGEXPRESSION_KEY
static final java.lang.String TagReading
static final java.lang.String TAG_READING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReading",
Constant Field Valuesstatic final java.lang.String TAGREADING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReading",
Constant Field Valuesstatic final java.lang.String TAG_READING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReading/get"static final java.lang.String TAGREADING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReading/get"static final java.lang.String TAG_READING_READ_EXTERNAL_KEY
TagReading,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReading/read"static final java.lang.String TAGREADING_READ_EXTERNAL_KEY
TagReading,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReading/read"static final java.lang.String TAG_READING_WRITE_EXTERNAL_KEY
TagReading,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReading/write"static final java.lang.String TAGREADING_WRITE_EXTERNAL_KEY
TagReading,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReading/write"static final java.lang.String TAG_READING_ERROR_EXTERNAL_KEY
TagReading,
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,
The value of this field is "prefix/RfidInventory/TagReading/error"static final java.lang.String TAGREADING_ERROR_EXTERNAL_KEY
TagReading,
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,
The value of this field is "prefix/RfidInventory/TagReading/error"static final java.lang.String TagAggregatingExpression
static final java.lang.String TAG_AGGREGATING_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregatingExpression",
Constant Field Valuesstatic final java.lang.String TAGAGGREGATINGEXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregatingExpression",
Constant Field Valuesstatic final java.lang.String TAG_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/get"static final java.lang.String TAGAGGREGATINGEXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/get"static final java.lang.String TAG_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
TagAggregatingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/read"static final java.lang.String TAGAGGREGATINGEXPRESSION_READ_EXTERNAL_KEY
TagAggregatingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/read"static final java.lang.String TAG_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
TagAggregatingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/write"static final java.lang.String TAGAGGREGATINGEXPRESSION_WRITE_EXTERNAL_KEY
TagAggregatingExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/write"static final java.lang.String TAG_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
TagAggregatingExpression,
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,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/error"static final java.lang.String TAGAGGREGATINGEXPRESSION_ERROR_EXTERNAL_KEY
TagAggregatingExpression,
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,
The value of this field is "prefix/RfidInventory/TagAggregatingExpression/error"static final java.lang.String TAG_AGGREGATING_EXPRESSION_KEY
static final java.lang.String TAGAGGREGATINGEXPRESSION_KEY
static final java.lang.String TagAggregating
static final java.lang.String TAG_AGGREGATING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregating",
Constant Field Valuesstatic final java.lang.String TAGAGGREGATING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregating",
Constant Field Valuesstatic final java.lang.String TAG_AGGREGATING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregating/get"static final java.lang.String TAGAGGREGATING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregating/get"static final java.lang.String TAG_AGGREGATING_READ_EXTERNAL_KEY
TagAggregating,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregating/read"static final java.lang.String TAGAGGREGATING_READ_EXTERNAL_KEY
TagAggregating,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregating/read"static final java.lang.String TAG_AGGREGATING_WRITE_EXTERNAL_KEY
TagAggregating,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregating/write"static final java.lang.String TAGAGGREGATING_WRITE_EXTERNAL_KEY
TagAggregating,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregating/write"static final java.lang.String TAG_AGGREGATING_ERROR_EXTERNAL_KEY
TagAggregating,
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,
The value of this field is "prefix/RfidInventory/TagAggregating/error"static final java.lang.String TAGAGGREGATING_ERROR_EXTERNAL_KEY
TagAggregating,
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,
The value of this field is "prefix/RfidInventory/TagAggregating/error"static final java.lang.String TagMaskSetting
static final java.lang.String TAG_MASK_SETTING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagMaskSetting",
Constant Field Valuesstatic final java.lang.String TAGMASKSETTING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagMaskSetting",
Constant Field Valuesstatic final java.lang.String TAG_MASK_SETTING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagMaskSetting/get"static final java.lang.String TAGMASKSETTING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagMaskSetting/get"static final java.lang.String TAG_MASK_SETTING_READ_EXTERNAL_KEY
TagMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagMaskSetting/read"static final java.lang.String TAGMASKSETTING_READ_EXTERNAL_KEY
TagMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagMaskSetting/read"static final java.lang.String TAG_MASK_SETTING_WRITE_EXTERNAL_KEY
TagMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagMaskSetting/write"static final java.lang.String TAGMASKSETTING_WRITE_EXTERNAL_KEY
TagMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagMaskSetting/write"static final java.lang.String TAG_MASK_SETTING_ERROR_EXTERNAL_KEY
TagMaskSetting,
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,
The value of this field is "prefix/RfidInventory/TagMaskSetting/error"static final java.lang.String TAGMASKSETTING_ERROR_EXTERNAL_KEY
TagMaskSetting,
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,
The value of this field is "prefix/RfidInventory/TagMaskSetting/error"static final java.lang.String TAG_MASK_SETTING_KEY
static final java.lang.String TAGMASKSETTING_KEY
static final java.lang.String TagFilterExpression
static final java.lang.String TAG_FILTER_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagFilterExpression",
Constant Field Valuesstatic final java.lang.String TAGFILTEREXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagFilterExpression",
Constant Field Valuesstatic final java.lang.String TAG_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagFilterExpression/get"static final java.lang.String TAGFILTEREXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagFilterExpression/get"static final java.lang.String TAG_FILTER_EXPRESSION_READ_EXTERNAL_KEY
TagFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagFilterExpression/read"static final java.lang.String TAGFILTEREXPRESSION_READ_EXTERNAL_KEY
TagFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagFilterExpression/read"static final java.lang.String TAG_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
TagFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagFilterExpression/write"static final java.lang.String TAGFILTEREXPRESSION_WRITE_EXTERNAL_KEY
TagFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagFilterExpression/write"static final java.lang.String TAG_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
TagFilterExpression,
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,
The value of this field is "prefix/RfidInventory/TagFilterExpression/error"static final java.lang.String TAGFILTEREXPRESSION_ERROR_EXTERNAL_KEY
TagFilterExpression,
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,
The value of this field is "prefix/RfidInventory/TagFilterExpression/error"static final java.lang.String TAG_FILTER_EXPRESSION_KEY
static final java.lang.String TAGFILTEREXPRESSION_KEY
static final java.lang.String AggregationFilterExpression
static final java.lang.String AGGREGATION_FILTER_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFilterExpression",
Constant Field Valuesstatic final java.lang.String AGGREGATIONFILTEREXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFilterExpression",
Constant Field Valuesstatic final java.lang.String AGGREGATION_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/get"static final java.lang.String AGGREGATIONFILTEREXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/get"static final java.lang.String AGGREGATION_FILTER_EXPRESSION_READ_EXTERNAL_KEY
AggregationFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/read"static final java.lang.String AGGREGATIONFILTEREXPRESSION_READ_EXTERNAL_KEY
AggregationFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/read"static final java.lang.String AGGREGATION_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
AggregationFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/write"static final java.lang.String AGGREGATIONFILTEREXPRESSION_WRITE_EXTERNAL_KEY
AggregationFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/write"static final java.lang.String AGGREGATION_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
AggregationFilterExpression,
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,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/error"static final java.lang.String AGGREGATIONFILTEREXPRESSION_ERROR_EXTERNAL_KEY
AggregationFilterExpression,
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,
The value of this field is "prefix/RfidInventory/AggregationFilterExpression/error"static final java.lang.String AGGREGATION_FILTER_EXPRESSION_KEY
static final java.lang.String AGGREGATIONFILTEREXPRESSION_KEY
static final java.lang.String AggregationFinalFilterExpression
static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression",
Constant Field Valuesstatic final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression",
Constant Field Valuesstatic final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/get"static final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/get"static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_READ_EXTERNAL_KEY
AggregationFinalFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/read".static final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_READ_EXTERNAL_KEY
AggregationFinalFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/read".static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_WRITE_EXTERNAL_KEY
AggregationFinalFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/write".static final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_WRITE_EXTERNAL_KEY
AggregationFinalFilterExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/write".static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_ERROR_EXTERNAL_KEY
AggregationFinalFilterExpression,
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,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/error".static final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_ERROR_EXTERNAL_KEY
AggregationFinalFilterExpression,
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,
The value of this field is "prefix/RfidInventory/AggregationFinalFilterExpression/error".static final java.lang.String AGGREGATION_FINAL_FILTER_EXPRESSION_KEY
static final java.lang.String AGGREGATIONFINALFILTEREXPRESSION_KEY
static final java.lang.String DuplicateFilteringExpression
static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression",
Constant Field Valuesstatic final java.lang.String DUPLICATEFILTERINGEXPRESSION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression",
Constant Field Valuesstatic final java.lang.String DUPLICATE_FILTERING_EXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/get"static final java.lang.String DUPLICATEFILTERINGEXPRESSION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/get"static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_READ_EXTERNAL_KEY
DuplicateFilteringExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/read"static final java.lang.String DUPLICATEFILTERINGEXPRESSION_READ_EXTERNAL_KEY
DuplicateFilteringExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/read"static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_WRITE_EXTERNAL_KEY
DuplicateFilteringExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/write"static final java.lang.String DUPLICATEFILTERINGEXPRESSION_WRITE_EXTERNAL_KEY
DuplicateFilteringExpression,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/write"static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_ERROR_EXTERNAL_KEY
DuplicateFilteringExpression,
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,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/error"static final java.lang.String DUPLICATEFILTERINGEXPRESSION_ERROR_EXTERNAL_KEY
DuplicateFilteringExpression,
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,
The value of this field is "prefix/RfidInventory/DuplicateFilteringExpression/error"static final java.lang.String DUPLICATE_FILTERING_EXPRESSION_KEY
static final java.lang.String DUPLICATEFILTERINGEXPRESSION_KEY
static final java.lang.String DuplicateFiltering
static final java.lang.String DUPLICATE_FILTERING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFiltering",
Constant Field Valuesstatic final java.lang.String DUPLICATEFILTERING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFiltering",
Constant Field Valuesstatic final java.lang.String DUPLICATE_FILTERING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFiltering/get"static final java.lang.String DUPLICATEFILTERING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DuplicateFiltering/get"static final java.lang.String DUPLICATE_FILTERING_READ_EXTERNAL_KEY
DuplicateFiltering,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/read"static final java.lang.String DUPLICATEFILTERING_READ_EXTERNAL_KEY
DuplicateFiltering,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/read"static final java.lang.String DUPLICATE_FILTERING_WRITE_EXTERNAL_KEY
DuplicateFiltering,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/write"static final java.lang.String DUPLICATEFILTERING_WRITE_EXTERNAL_KEY
DuplicateFiltering,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/write"static final java.lang.String DUPLICATE_FILTERING_ERROR_EXTERNAL_KEY
DuplicateFiltering,
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,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/error"static final java.lang.String DUPLICATEFILTERING_ERROR_EXTERNAL_KEY
DuplicateFiltering,
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,
The value of this field is "prefix/RfidInventory/DuplicateFiltering/error"static final java.lang.String AggregationMaskSetting
static final java.lang.String AGGREGATION_MASK_SETTING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationMaskSetting",
Constant Field Valuesstatic final java.lang.String AGGREGATIONMASKSETTING_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationMaskSetting",
Constant Field Valuesstatic final java.lang.String AGGREGATION_MASK_SETTING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/get"static final java.lang.String AGGREGATIONMASKSETTING_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/get"static final java.lang.String AGGREGATION_MASK_SETTING_READ_EXTERNAL_KEY
AggregationMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/read"static final java.lang.String AGGREGATIONMASKSETTING_READ_EXTERNAL_KEY
AggregationMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/read"static final java.lang.String AGGREGATION_MASK_SETTING_WRITE_EXTERNAL_KEY
AggregationMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/write"static final java.lang.String AGGREGATIONMASKSETTING_WRITE_EXTERNAL_KEY
AggregationMaskSetting,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/write"static final java.lang.String AGGREGATION_MASK_SETTING_ERROR_EXTERNAL_KEY
AggregationMaskSetting,
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,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/error"static final java.lang.String AGGREGATIONMASKSETTING_ERROR_EXTERNAL_KEY
AggregationMaskSetting,
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,
The value of this field is "prefix/RfidInventory/AggregationMaskSetting/error"static final java.lang.String AGGREGATION_MASK_SETTING_KEY
static final java.lang.String AGGREGATIONMASKSETTING_KEY
static final java.lang.String DataExtensions
static final java.lang.String DATA_EXTENSIONS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DataExtensions",
Constant Field Valuesstatic final java.lang.String DATAEXTENSIONS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DataExtensions",
Constant Field Valuesstatic final java.lang.String DATA_EXTENSIONS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DataExtensions/get"static final java.lang.String DATAEXTENSIONS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/DataExtensions/get"static final java.lang.String DATA_EXTENSIONS_READ_EXTERNAL_KEY
DataExtensions,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DataExtensions/read"static final java.lang.String DATAEXTENSIONS_READ_EXTERNAL_KEY
DataExtensions,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DataExtensions/read"static final java.lang.String DATA_EXTENSIONS_WRITE_EXTERNAL_KEY
DataExtensions,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DataExtensions/write"static final java.lang.String DATAEXTENSIONS_WRITE_EXTERNAL_KEY
DataExtensions,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/DataExtensions/write"static final java.lang.String DATA_EXTENSIONS_ERROR_EXTERNAL_KEY
DataExtensions,
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,
The value of this field is "prefix/RfidInventory/DataExtensions/error"static final java.lang.String DATAEXTENSIONS_ERROR_EXTERNAL_KEY
DataExtensions,
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,
The value of this field is "prefix/RfidInventory/DataExtensions/error"static final java.lang.String TagPosition
static final java.lang.String TAG_POSITION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagPosition",
Constant Field Valuesstatic final java.lang.String TAGPOSITION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagPosition",
Constant Field Valuesstatic final java.lang.String TAG_POSITION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagPosition/get"static final java.lang.String TAGPOSITION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagPosition/get"static final java.lang.String TAG_POSITION_READ_EXTERNAL_KEY
TagPosition,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagPosition/read"static final java.lang.String TAGPOSITION_READ_EXTERNAL_KEY
TagPosition,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagPosition/read"static final java.lang.String TAG_POSITION_WRITE_EXTERNAL_KEY
TagPosition,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagPosition/write"static final java.lang.String TAGPOSITION_WRITE_EXTERNAL_KEY
TagPosition,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagPosition/write"static final java.lang.String TAG_POSITION_ERROR_EXTERNAL_KEY
TagPosition,
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,
The value of this field is "prefix/RfidInventory/TagPosition/error"static final java.lang.String TAGPOSITION_ERROR_EXTERNAL_KEY
TagPosition,
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,
The value of this field is "prefix/RfidInventory/TagPosition/error"static final java.lang.String TagAntennaReportLevel
static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel",
Constant Field Valuesstatic final java.lang.String TAGANTENNAREPORTLEVEL_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel",
Constant Field Valuesstatic final java.lang.String TAG_ANTENNA_REPORT_LEVEL_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/get"static final java.lang.String TAGANTENNAREPORTLEVEL_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/get"static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_READ_EXTERNAL_KEY
TagAntennaReportLevel,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/read"static final java.lang.String TAGANTENNAREPORTLEVEL_READ_EXTERNAL_KEY
TagAntennaReportLevel,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/read"static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_WRITE_EXTERNAL_KEY
TagAntennaReportLevel,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/write"static final java.lang.String TAGANTENNAREPORTLEVEL_WRITE_EXTERNAL_KEY
TagAntennaReportLevel,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/write"static final java.lang.String TAG_ANTENNA_REPORT_LEVEL_ERROR_EXTERNAL_KEY
TagAntennaReportLevel,
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,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/error"static final java.lang.String TAGANTENNAREPORTLEVEL_ERROR_EXTERNAL_KEY
TagAntennaReportLevel,
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,
The value of this field is "prefix/RfidInventory/TagAntennaReportLevel/error"static final java.lang.String ReadOperations
static final java.lang.String READ_OPERATIONS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperations",
Constant Field Valuesstatic final java.lang.String READOPERATIONS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperations",
Constant Field Valuesstatic final java.lang.String READ_OPERATIONS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperations/get"static final java.lang.String READOPERATIONS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperations/get"static final java.lang.String READ_OPERATIONS_READ_EXTERNAL_KEY
ReadOperations,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperations/read"static final java.lang.String READOPERATIONS_READ_EXTERNAL_KEY
ReadOperations,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperations/read"static final java.lang.String READ_OPERATIONS_WRITE_EXTERNAL_KEY
ReadOperations,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperations/write"static final java.lang.String READOPERATIONS_WRITE_EXTERNAL_KEY
ReadOperations,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperations/write"static final java.lang.String READ_OPERATIONS_ERROR_EXTERNAL_KEY
ReadOperations,
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,
The value of this field is "prefix/RfidInventory/ReadOperations/error"static final java.lang.String READOPERATIONS_ERROR_EXTERNAL_KEY
ReadOperations,
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,
The value of this field is "prefix/RfidInventory/ReadOperations/error"static final java.lang.String READ_OPERATIONS_KEY
static final java.lang.String READOPERATIONS_KEY
static final java.lang.String ReadOperationsCount
static final java.lang.String READ_OPERATIONS_COUNT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperationsCount",
Constant Field Valuesstatic final java.lang.String READOPERATIONSCOUNT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperationsCount",
Constant Field Valuesstatic final java.lang.String READ_OPERATIONS_COUNT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperationsCount/get"static final java.lang.String READOPERATIONSCOUNT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ReadOperationsCount/get"static final java.lang.String READ_OPERATIONS_COUNT_READ_EXTERNAL_KEY
ReadOperationsCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/read"static final java.lang.String READOPERATIONSCOUNT_READ_EXTERNAL_KEY
ReadOperationsCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/read"static final java.lang.String READ_OPERATIONS_COUNT_WRITE_EXTERNAL_KEY
ReadOperationsCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/write"static final java.lang.String READOPERATIONSCOUNT_WRITE_EXTERNAL_KEY
ReadOperationsCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/write"static final java.lang.String READ_OPERATIONS_COUNT_ERROR_EXTERNAL_KEY
ReadOperationsCount,
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,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/error"static final java.lang.String READOPERATIONSCOUNT_ERROR_EXTERNAL_KEY
ReadOperationsCount,
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,
The value of this field is "prefix/RfidInventory/ReadOperationsCount/error"static final java.lang.String READ_OPERATIONS_COUNT_KEY
static final java.lang.String READOPERATIONSCOUNT_KEY
static final java.lang.String AntennaCount
static final java.lang.String ANTENNA_COUNT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AntennaCount",
Constant Field Valuesstatic final java.lang.String ANTENNACOUNT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AntennaCount",
Constant Field Valuesstatic final java.lang.String ANTENNA_COUNT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AntennaCount/get"static final java.lang.String ANTENNACOUNT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/AntennaCount/get"static final java.lang.String ANTENNA_COUNT_READ_EXTERNAL_KEY
AntennaCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AntennaCount/read"static final java.lang.String ANTENNACOUNT_READ_EXTERNAL_KEY
AntennaCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AntennaCount/read"static final java.lang.String ANTENNA_COUNT_WRITE_EXTERNAL_KEY
AntennaCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AntennaCount/write"static final java.lang.String ANTENNACOUNT_WRITE_EXTERNAL_KEY
AntennaCount,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/AntennaCount/write"static final java.lang.String ANTENNA_COUNT_ERROR_EXTERNAL_KEY
AntennaCount,
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,
The value of this field is "prefix/RfidInventory/AntennaCount/error"static final java.lang.String ANTENNACOUNT_ERROR_EXTERNAL_KEY
AntennaCount,
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,
The value of this field is "prefix/RfidInventory/AntennaCount/error"static final java.lang.String ANTENNA_COUNT_KEY
static final java.lang.String ANTENNACOUNT_KEY
static final java.lang.String SuperCacheMaximumSize
static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize",
Constant Field Valuesstatic final java.lang.String SUPERCACHEMAXIMUMSIZE_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize",
Constant Field Valuesstatic final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/get"static final java.lang.String SUPERCACHEMAXIMUMSIZE_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/get"static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_READ_EXTERNAL_KEY
SuperCacheMaximumSize,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/read"static final java.lang.String SUPERCACHEMAXIMUMSIZE_READ_EXTERNAL_KEY
SuperCacheMaximumSize,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/read"static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_WRITE_EXTERNAL_KEY
SuperCacheMaximumSize,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/write"static final java.lang.String SUPERCACHEMAXIMUMSIZE_WRITE_EXTERNAL_KEY
SuperCacheMaximumSize,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/write"static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_ERROR_EXTERNAL_KEY
SuperCacheMaximumSize,
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,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/error"static final java.lang.String SUPERCACHEMAXIMUMSIZE_ERROR_EXTERNAL_KEY
SuperCacheMaximumSize,
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,
The value of this field is "prefix/RfidInventory/SuperCacheMaximumSize/error"static final java.lang.String SUPER_CACHE_MAXIMUM_SIZE_KEY
static final java.lang.String SUPERCACHEMAXIMUMSIZE_KEY
static final java.lang.String ConfidenceScript
static final java.lang.String CONFIDENCE_SCRIPT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ConfidenceScript",
Constant Field Valuesstatic final java.lang.String CONFIDENCESCRIPT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ConfidenceScript",
Constant Field Valuesstatic final java.lang.String CONFIDENCE_SCRIPT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ConfidenceScript/get"static final java.lang.String CONFIDENCESCRIPT_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/ConfidenceScript/get"static final java.lang.String CONFIDENCE_SCRIPT_READ_EXTERNAL_KEY
ConfidenceScript,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ConfidenceScript/read"static final java.lang.String CONFIDENCESCRIPT_READ_EXTERNAL_KEY
ConfidenceScript,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ConfidenceScript/read"static final java.lang.String CONFIDENCE_SCRIPT_WRITE_EXTERNAL_KEY
ConfidenceScript,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ConfidenceScript/write"static final java.lang.String CONFIDENCESCRIPT_WRITE_EXTERNAL_KEY
ConfidenceScript,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/ConfidenceScript/write"static final java.lang.String CONFIDENCE_SCRIPT_ERROR_EXTERNAL_KEY
ConfidenceScript,
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,
The value of this field is "prefix/RfidInventory/ConfidenceScript/error"static final java.lang.String CONFIDENCESCRIPT_ERROR_EXTERNAL_KEY
ConfidenceScript,
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,
The value of this field is "prefix/RfidInventory/ConfidenceScript/error"static final java.lang.String CONFIDENCE_SCRIPT_KEY
static final java.lang.String CONFIDENCESCRIPT_KEY
static final java.lang.String TagReport
static final java.lang.String TAG_REPORT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReport",
Constant Field Valuesstatic final java.lang.String TAGREPORT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReport",
Constant Field Valuesstatic final java.lang.String TAG_REPORT_TRIGGER_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReport/trigger"static final java.lang.String TAGREPORT_TRIGGER_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagReport/trigger"static final java.lang.String TAG_REPORT_ERROR_EXTERNAL_KEY
TagReport,
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReport/error"static final java.lang.String TAGREPORT_ERROR_EXTERNAL_KEY
TagReport,
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagReport/error"static final java.lang.String TagAggregationReport
static final java.lang.String TAG_AGGREGATION_REPORT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregationReport",
Constant Field Valuesstatic final java.lang.String TAGAGGREGATIONREPORT_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregationReport",
Constant Field Valuesstatic final java.lang.String TAG_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregationReport/trigger"static final java.lang.String TAGAGGREGATIONREPORT_TRIGGER_EXTERNAL_KEY
The value of this field is "prefix/RfidInventory/TagAggregationReport/trigger"static final java.lang.String TAG_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
TagAggregationReport,
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregationReport/error"static final java.lang.String TAGAGGREGATIONREPORT_ERROR_EXTERNAL_KEY
TagAggregationReport,
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventory/TagAggregationReport/error"static final java.lang.String[] ALL_COMMANDS
static final java.lang.String[] ALL_SIGNALS
static final java.lang.String[] ALL_MEASUREMENTS
static final java.lang.String TAGS_DATA_KEY
static final java.lang.String ANTENNA_DATA_KEY
static final java.lang.String COUNT_DATA_KEY
static final java.lang.String READER_DATA_KEY
static final java.lang.String ANTENNA_REPORT_COUNT_DATA_KEY
static final java.lang.String ANTENNAREPORTCOUNT_DATA_KEY
static final java.lang.String TIMESTAMP_FIRST_DATA_KEY
static final java.lang.String TIMESTAMPFIRST_DATA_KEY
static final java.lang.String TIMESTAMP_LAST_DATA_KEY
static final java.lang.String TIMESTAMPLAST_DATA_KEY
static final java.lang.String DURATION_DATA_KEY
static final java.lang.String DATA_EXTENSIONS_DATA_KEY
static final java.lang.String DATAEXTENSIONS_DATA_KEY
static final java.lang.String POSITION_DATA_KEY
static final java.lang.String TID_DATA_KEY
static final java.lang.String USERDATA_DATA_KEY
static final java.lang.String LLRP_RO_SPEC_ID_DATA_KEY
static final java.lang.String LLRPROSPECID_DATA_KEY
static final java.lang.String LLRP_SPEC_INDEX_DATA_KEY
static final java.lang.String LLRPSPECINDEX_DATA_KEY
static final java.lang.String LLRP_INVENTORY_PARAMETER_SPEC_ID_DATA_KEY
static final java.lang.String LLRPINVENTORYPARAMETERSPECID_DATA_KEY
static final java.lang.String PEAK_RSSI_DATA_KEY
static final java.lang.String PEAKRSSI_DATA_KEY
static final java.lang.String PEAK_RSSI_AVERAGE_DATA_KEY
static final java.lang.String PEAKRSSIAVERAGE_DATA_KEY
static final java.lang.String PEAK_RSSI_RANGE_DATA_KEY
static final java.lang.String PEAKRSSIRANGE_DATA_KEY
static final java.lang.String PEAK_RSSI_TOTAL_DATA_KEY
static final java.lang.String PEAKRSSITOTAL_DATA_KEY
static final java.lang.String PEAK_RSSI_MINIMUM_DATA_KEY
static final java.lang.String PEAKRSSIMINIMUM_DATA_KEY
static final java.lang.String PEAK_RSSI_MAXIMUM_DATA_KEY
static final java.lang.String PEAKRSSIMAXIMUM_DATA_KEY
static final java.lang.String CHANNEL_INDEX_DATA_KEY
static final java.lang.String CHANNELINDEX_DATA_KEY
static final java.lang.String TIMESTAMP_FIRST_UPTIME_DATA_KEY
static final java.lang.String TIMESTAMPFIRSTUPTIME_DATA_KEY
static final java.lang.String TIMESTAMP_LAST_UPTIME_DATA_KEY
static final java.lang.String TIMESTAMPLASTUPTIME_DATA_KEY
static final java.lang.String LLRP_ACCESS_SPEC_ID_DATA_KEY
static final java.lang.String LLRPACCESSSPECID_DATA_KEY
static final java.lang.String LLRP_AIR_PROTOCOL_TAG_DATA_DATA_KEY
static final java.lang.String LLRPAIRPROTOCOLTAGDATA_DATA_KEY
static final java.lang.String C1G2PC_DATA_KEY
static final java.lang.String C1G2CRC_DATA_KEY
static final java.lang.String LLRP_OP_SPEC_RESULT_DATA_KEY
static final java.lang.String LLRPOPSPECRESULT_DATA_KEY
static final java.lang.String LLRP_OP_SPEC_RESULT_CODE_DATA_KEY
static final java.lang.String LLRPOPSPECRESULTCODE_DATA_KEY
static final java.lang.String LLRP_OP_SPEC_READ_DATA_DATA_KEY
static final java.lang.String LLRPOPSPECREADDATA_DATA_KEY
static final java.lang.String LLRP_OP_SPEC_NUM_WORDS_WRITTEN_DATA_KEY
static final java.lang.String LLRPOPSPECNUMWORDSWRITTEN_DATA_KEY
static final java.lang.String ANTENNA1_DATA_KEY
static final java.lang.String ANTENNA2_DATA_KEY
static final java.lang.String ANTENNA3_DATA_KEY
static final java.lang.String ANTENNA4_DATA_KEY
static final java.lang.String BATTERY_DATA_KEY
static final java.lang.String EPC_URI_DATA_KEY
static final java.lang.String EPCURI_DATA_KEY
static final java.lang.String KILL_PWD_DATA_KEY
static final java.lang.String KILLPWD_DATA_KEY
static final java.lang.String ACCESS_PWD_DATA_KEY
static final java.lang.String ACCESSPWD_DATA_KEY
static final java.lang.String EPC_BANK_DATA_KEY
static final java.lang.String EPCBANK_DATA_KEY
static final java.lang.String TID_BANK_DATA_KEY
static final java.lang.String TIDBANK_DATA_KEY
static final java.lang.String USER_BANK_DATA_KEY
static final java.lang.String USERBANK_DATA_KEY
static final java.lang.String AFI_DATA_KEY
static final java.lang.String NSI_DATA_KEY
static final java.lang.String TAG_TYPE_DATA_KEY
static final java.lang.String TAGTYPE_DATA_KEY
static final java.lang.String PEAK_RSSI_MINIMUM_STANDARD_SCORE_DATA_KEY
static final java.lang.String PEAKRSSIMINIMUMSTANDARDSCORE_DATA_KEY
static final java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_SCORE_DATA_KEY
static final java.lang.String PEAKRSSIMAXIMUMSTANDARDSCORE_DATA_KEY
static final java.lang.String SUMMARY_DATA_KEY
static final java.lang.String PEAK_RSSI_MINIMUM_MEDIAN_DATA_KEY
static final java.lang.String PEAKRSSIMINIMUMMEDIAN_DATA_KEY
static final java.lang.String PEAK_RSSI_MAXIMUM_MEDIAN_DATA_KEY
static final java.lang.String PEAKRSSIMAXIMUMMEDIAN_DATA_KEY
static final java.lang.String PEAK_RSSI_MINIMUM_AVERAGE_DATA_KEY
static final java.lang.String PEAKRSSIMINIMUMAVERAGE_DATA_KEY
static final java.lang.String PEAK_RSSI_MAXIMUM_AVERAGE_DATA_KEY
static final java.lang.String PEAKRSSIMAXIMUMAVERAGE_DATA_KEY
static final java.lang.String PEAK_RSSI_MINIMUM_STANDARD_DEVIATION_DATA_KEY
static final java.lang.String PEAKRSSIMINIMUMSTANDARDDEVIATION_DATA_KEY
static final java.lang.String PEAK_RSSI_MAXIMUM_STANDARD_DEVIATION_DATA_KEY
static final java.lang.String PEAKRSSIMAXIMUMSTANDARDDEVIATION_DATA_KEY
static final java.lang.String TAG_COUNT_DATA_KEY
static final java.lang.String TAGCOUNT_DATA_KEY
static final java.lang.String COUNT_AVERAGE_DATA_KEY
static final java.lang.String COUNTAVERAGE_DATA_KEY
static final java.lang.String READERS_MAP_DATA_KEY
static final java.lang.String READERSMAP_DATA_KEY
static final java.lang.String ANTENNAS_MAP_DATA_KEY
static final java.lang.String ANTENNASMAP_DATA_KEY
static final java.lang.String REPORTS_MAP_DATA_KEY
static final java.lang.String REPORTSMAP_DATA_KEY
static final java.lang.String VENDOR_EXTENSIONS_DATA_KEY
static final java.lang.String VENDOREXTENSIONS_DATA_KEY
static final java.lang.String VENDOR_IDENTIFIER_DATA_KEY
static final java.lang.String VENDORIDENTIFIER_DATA_KEY
static final java.lang.String PARAMETER_SUBTYPE_DATA_KEY
static final java.lang.String PARAMETERSUBTYPE_DATA_KEY
static final java.lang.String VENDOR_PARAMETER_VALUE_DATA_KEY
static final java.lang.String VENDORPARAMETERVALUE_DATA_KEY
static final java.lang.String CONFIDENCE_DATA_KEY
static final java.lang.String READ_STOP_TIMEOUT
static final java.lang.String READSTOPTIMEOUT_KEY
static final int READ_STOP_TIMEOUT_DEFAULT
READ_STOP_TIMEOUT,
Constant Field Valuesstatic final int READSTOPTIMEOUT_DEFAULT
READ_STOP_TIMEOUT,
Constant Field Valuesstatic final int DEFAULT_READSTOPTIMEOUT
READ_STOP_TIMEOUT,
Constant Field Valuesstatic final java.lang.String SERVICE_DESCRIPTION
static final java.lang.String Status
static final java.lang.String STATUS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Status",
Constant Field Valuesstatic final java.lang.String STATUS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Status/get"static final java.lang.String STATUS_ERROR_EXTERNAL_KEY
Status,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventoryProfile/Status/error"static final java.lang.String Configuration
static final java.lang.String CONFIGURATION_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Configuration",
Constant Field Valuesstatic final java.lang.String CONFIGURATION_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Configuration/get"static final java.lang.String CONFIGURATION_ERROR_EXTERNAL_KEY
Configuration,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventoryProfile/Configuration/error"static final java.lang.String Capabilities
static final java.lang.String CAPABILITIES_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Capabilities",
Constant Field Valuesstatic final java.lang.String CAPABILITIES_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Capabilities/get"static final java.lang.String CAPABILITIES_ERROR_EXTERNAL_KEY
Capabilities,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventoryProfile/Capabilities/error"static final java.lang.String Metrics
static final java.lang.String METRICS_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Metrics",
Constant Field Valuesstatic final java.lang.String METRICS_GET_EXTERNAL_KEY
The value of this field is "prefix/RfidInventoryProfile/Metrics/get"static final java.lang.String METRICS_ERROR_EXTERNAL_KEY
Metrics,
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
The value of this field is "prefix/RfidInventoryProfile/Metrics/error"
|
2008-07-29 1.1.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||