org.eclipse.soda.dk.rfid.write.profile.service
Interface RfidWriteProfileService
- All Known Implementing Classes:
- RfidWriteProfile
public interface RfidWriteProfileService
The RFID Write Profile defined the common method of perform write operation against RFID tags across different RFID readers.
We have tried to model some of this profile based the Low Level Reader Protocol (LLRP) write functions.
The first set of controls define how the RFID Write Profile will report the tag write information.
The next set of controls define how the Write Operations will be performed and how these Write Operations
will be triggered.
<p>
NOTE: This is a very early definition of this profile and will change as we get
important feedback from application providers and hardware vendors.
</p>
<p>RFID Write Profile Questions/Issues
</p>
<ul>
<li>Currently, LLRP does not support auto increment of the Tag ID's being written.
This profile currently does not support auto increment.
Is this the correct decision for this profile?
</li>
<li>What other operations (like Kill Tag, Erase Tag) should be supported?
</li>
<li>What is the best way to handle passwords?
</li>
<li>Can this profile be made simplier? Can any of these controls be deleted?
</li>
</ul>
.
The device service interface defines the service to be registered for the RfidWriteProfile device.
The following commands are supported:
| WriteOperationsExecuteRequest |
The WriteOperationsExecuteRequest command requests that that tag write operations be executed. If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations. |
| WriteOperationsStopRequest |
The WriteOperationsStopRequest command requests that that tag write operations be stopped. If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations. |
The following measurements are supported:
| AntennaConfiguration |
The AntennaConfiguration is the map containing the antenna configuration. The key is the antenna number based on a starting index of 1. The value is another map containing the information about that specific antenna. |
| DataWriteExtensions |
The DataWriteExtensions measurement is a map of metadata to be associated with tag data. Data Write extensions are applied to TagWriteReport data as the signal is published. Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle. Writing a value to this measurement merges the new map with the current DataWriteExtensions value. Setting the value of the measurement to an empty map clears the value. |
| TagWriteMaskSetting |
The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a placeholder 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 semi-colon. |
| TagAggregationWriteMaskSetting |
The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal. A mask is specified by four comma-delimited parameters. The first parameter of a tag mask is a placeholder 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 semi-colon. |
| TagWriteAggregatingExpression |
The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values. |
| TagWriteAggregating |
The TagWriteAggregating measurement specifies the state of aggregating behavior. When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask. When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags. If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value. |
| WriteOperations |
The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match)
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId]
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
|
| WriteOperationsExpression |
The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values. If the state of this expression changes to true, then the current WriteOperations will be executed once. |
| WriteOperationsExecuteStatus |
The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed. If the status is true, sending a new WriteOperations or execute request will result in an exception. |
The following signals are supported:
| TagWriteReport |
TagWriteReport is a signal containing tag write information in a map structure. The report contains one to many tags stored at the "tags" key. It may include data extension metadata stored at the "dataExtensions" key. See the tags and DataWriteExtensions descriptions for details. |
| TagWriteAggregationReport |
TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key. See the tags and DataWriteExtensions descriptions for details. |
The list of exported services:
- Version:
- 1.1.0
- See Also:
RfidWriteProfileService,
org.eclipse.soda.dk.profile.service.ProfileService
SERVICE_NAME
static final java.lang.String SERVICE_NAME
- Define the OSGi service name.
- See Also:
- Constant Field Values
RfidWriteProfile
static final java.lang.String RfidWriteProfile
- Define the RfidWriteProfile key.
- See Also:
- Constant Field Values
WriteOperationsExecuteRequest
static final java.lang.String WriteOperationsExecuteRequest
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXECUTE_REQUEST_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_REQUEST_EXTERNAL_KEY
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSEXECUTEREQUEST_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTEREQUEST_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_REQUEST_EXTERNAL_KEY
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSEXECUTEREQUEST_EXECUTE_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTEREQUEST_EXECUTE_EXTERNAL_KEY
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
WRITE_OPERATIONS_EXECUTE_REQUEST_ERROR_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_REQUEST_ERROR_EXTERNAL_KEY
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#EXECUTE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteRequest/error"
WRITEOPERATIONSEXECUTEREQUEST_ERROR_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTEREQUEST_ERROR_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_REQUEST_ERROR_EXTERNAL_KEY
- The WriteOperationsExecuteRequest command requests that that tag write operations be executed.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not execute the tag write operations.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#EXECUTE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteRequest/error"
WriteOperationsStopRequest
static final java.lang.String WriteOperationsStopRequest
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_STOP_REQUEST_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_STOP_REQUEST_EXTERNAL_KEY
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSSTOPREQUEST_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSSTOPREQUEST_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_STOP_REQUEST_EXTERNAL_KEY
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSSTOPREQUEST_EXECUTE_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSSTOPREQUEST_EXECUTE_EXTERNAL_KEY
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
WRITE_OPERATIONS_STOP_REQUEST_ERROR_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_STOP_REQUEST_ERROR_EXTERNAL_KEY
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#EXECUTE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsStopRequest/error"
WRITEOPERATIONSSTOPREQUEST_ERROR_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSSTOPREQUEST_ERROR_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_STOP_REQUEST_ERROR_EXTERNAL_KEY
- The WriteOperationsStopRequest command requests that that tag write operations be stopped.
If an LDAP expression is specified for the WriteOperationsExpression, a publication to write a value to this command will result in an exception and will not stop the tag write operations.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#EXECUTE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsStopRequest/error"
AntennaConfiguration
static final java.lang.String AntennaConfiguration
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
- Constant Field Values
ANTENNA_CONFIGURATION_EXTERNAL_KEY
static final java.lang.String ANTENNA_CONFIGURATION_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
- Constant Field Values
ANTENNACONFIGURATION_EXTERNAL_KEY
static final java.lang.String ANTENNACONFIGURATION_EXTERNAL_KEY
- Deprecated. use ANTENNA_CONFIGURATION_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
- Constant Field Values
ANTENNA_CONFIGURATION_GET_EXTERNAL_KEY
static final java.lang.String ANTENNA_CONFIGURATION_GET_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
ANTENNACONFIGURATION_GET_EXTERNAL_KEY
static final java.lang.String ANTENNACONFIGURATION_GET_EXTERNAL_KEY
- Deprecated. use ANTENNA_CONFIGURATION_GET_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
ANTENNA_CONFIGURATION_READ_EXTERNAL_KEY
static final java.lang.String ANTENNA_CONFIGURATION_READ_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/read"
ANTENNACONFIGURATION_READ_EXTERNAL_KEY
static final java.lang.String ANTENNACONFIGURATION_READ_EXTERNAL_KEY
- Deprecated. use ANTENNA_CONFIGURATION_READ_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/read"
ANTENNA_CONFIGURATION_WRITE_EXTERNAL_KEY
static final java.lang.String ANTENNA_CONFIGURATION_WRITE_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/write"
ANTENNACONFIGURATION_WRITE_EXTERNAL_KEY
static final java.lang.String ANTENNACONFIGURATION_WRITE_EXTERNAL_KEY
- Deprecated. use ANTENNA_CONFIGURATION_WRITE_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/write"
ANTENNA_CONFIGURATION_ERROR_EXTERNAL_KEY
static final java.lang.String ANTENNA_CONFIGURATION_ERROR_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/error"
ANTENNACONFIGURATION_ERROR_EXTERNAL_KEY
static final java.lang.String ANTENNACONFIGURATION_ERROR_EXTERNAL_KEY
- Deprecated. use ANTENNA_CONFIGURATION_ERROR_EXTERNAL_KEY
- The AntennaConfiguration is the map containing the antenna configuration.
The key is the antenna number based on a starting index of 1.
The value is another map containing the information about that specific antenna.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/AntennaConfiguration/error"
ANTENNA_CONFIGURATION_KEY
static final java.lang.String ANTENNA_CONFIGURATION_KEY
- Configuration ANTENNA_CONFIGURATION_KEY key.
- See Also:
- Constant Field Values
ANTENNACONFIGURATION_KEY
static final java.lang.String ANTENNACONFIGURATION_KEY
- Deprecated. use ANTENNA_CONFIGURATION_KEY
- Configuration ANTENNA_CONFIGURATION_KEY key.
- See Also:
- Constant Field Values
DataWriteExtensions
static final java.lang.String DataWriteExtensions
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
- Constant Field Values
DATA_WRITE_EXTENSIONS_EXTERNAL_KEY
static final java.lang.String DATA_WRITE_EXTENSIONS_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
- Constant Field Values
DATAWRITEEXTENSIONS_EXTERNAL_KEY
static final java.lang.String DATAWRITEEXTENSIONS_EXTERNAL_KEY
- Deprecated. use DATA_WRITE_EXTENSIONS_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
- Constant Field Values
DATA_WRITE_EXTENSIONS_GET_EXTERNAL_KEY
static final java.lang.String DATA_WRITE_EXTENSIONS_GET_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
DATAWRITEEXTENSIONS_GET_EXTERNAL_KEY
static final java.lang.String DATAWRITEEXTENSIONS_GET_EXTERNAL_KEY
- Deprecated. use DATA_WRITE_EXTENSIONS_GET_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
DATA_WRITE_EXTENSIONS_READ_EXTERNAL_KEY
static final java.lang.String DATA_WRITE_EXTENSIONS_READ_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/read"
DATAWRITEEXTENSIONS_READ_EXTERNAL_KEY
static final java.lang.String DATAWRITEEXTENSIONS_READ_EXTERNAL_KEY
- Deprecated. use DATA_WRITE_EXTENSIONS_READ_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/read"
DATA_WRITE_EXTENSIONS_WRITE_EXTERNAL_KEY
static final java.lang.String DATA_WRITE_EXTENSIONS_WRITE_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/write"
DATAWRITEEXTENSIONS_WRITE_EXTERNAL_KEY
static final java.lang.String DATAWRITEEXTENSIONS_WRITE_EXTERNAL_KEY
- Deprecated. use DATA_WRITE_EXTENSIONS_WRITE_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/write"
DATA_WRITE_EXTENSIONS_ERROR_EXTERNAL_KEY
static final java.lang.String DATA_WRITE_EXTENSIONS_ERROR_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/error"
DATAWRITEEXTENSIONS_ERROR_EXTERNAL_KEY
static final java.lang.String DATAWRITEEXTENSIONS_ERROR_EXTERNAL_KEY
- Deprecated. use DATA_WRITE_EXTENSIONS_ERROR_EXTERNAL_KEY
- The DataWriteExtensions measurement is a map of metadata to be associated with tag data.
Data Write extensions are applied to TagWriteReport data as the signal is published.
Data extensions are applied to a TagWriteAggregationReport at the beginning and end of the aggregation cycle.
Writing a value to this measurement merges the new map with the current DataWriteExtensions value.
Setting the value of the measurement to an empty map clears the value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/DataWriteExtensions/error"
TagWriteMaskSetting
static final java.lang.String TagWriteMaskSetting
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAG_WRITE_MASK_SETTING_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAGWRITEMASKSETTING_EXTERNAL_KEY
static final java.lang.String TAGWRITEMASKSETTING_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAG_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
TAGWRITEMASKSETTING_GET_EXTERNAL_KEY
static final java.lang.String TAGWRITEMASKSETTING_GET_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
TAG_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/read"
TAGWRITEMASKSETTING_READ_EXTERNAL_KEY
static final java.lang.String TAGWRITEMASKSETTING_READ_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/read"
TAG_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/write"
TAGWRITEMASKSETTING_WRITE_EXTERNAL_KEY
static final java.lang.String TAGWRITEMASKSETTING_WRITE_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/write"
TAG_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/error"
TAGWRITEMASKSETTING_ERROR_EXTERNAL_KEY
static final java.lang.String TAGWRITEMASKSETTING_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
- The TagWriteMaskSetting specifies the definition of tags that should be published on the TagWriteReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteMaskSetting/error"
TAG_WRITE_MASK_SETTING_KEY
static final java.lang.String TAG_WRITE_MASK_SETTING_KEY
- Configuration TAG_WRITE_MASK_SETTING_KEY key.
- See Also:
- Constant Field Values
TAGWRITEMASKSETTING_KEY
static final java.lang.String TAGWRITEMASKSETTING_KEY
- Deprecated. use TAG_WRITE_MASK_SETTING_KEY
- Configuration TAG_WRITE_MASK_SETTING_KEY key.
- See Also:
- Constant Field Values
TagAggregationWriteMaskSetting
static final java.lang.String TagAggregationWriteMaskSetting
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAG_AGGREGATION_WRITE_MASK_SETTING_EXTERNAL_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAGAGGREGATIONWRITEMASKSETTING_EXTERNAL_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_EXTERNAL_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
- Constant Field Values
TAG_AGGREGATION_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
TAGAGGREGATIONWRITEMASKSETTING_GET_EXTERNAL_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_GET_EXTERNAL_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_GET_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
TAG_AGGREGATION_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/read"
TAGAGGREGATIONWRITEMASKSETTING_READ_EXTERNAL_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_READ_EXTERNAL_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_READ_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/read"
TAG_AGGREGATION_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/write"
TAGAGGREGATIONWRITEMASKSETTING_WRITE_EXTERNAL_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_WRITE_EXTERNAL_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_WRITE_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/write"
TAG_AGGREGATION_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/error"
TAGAGGREGATIONWRITEMASKSETTING_ERROR_EXTERNAL_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_ERROR_EXTERNAL_KEY
- The TagAggregationWriteMaskSetting specifies the definition of tags that should be published on the TagWriteAggregationReport signal.
A mask is specified by four comma-delimited parameters.
The first parameter of a tag mask is a placeholder 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 semi-colon.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagAggregationWriteMaskSetting/error"
TAG_AGGREGATION_WRITE_MASK_SETTING_KEY
static final java.lang.String TAG_AGGREGATION_WRITE_MASK_SETTING_KEY
- Configuration TAG_AGGREGATION_WRITE_MASK_SETTING_KEY key.
- See Also:
- Constant Field Values
TAGAGGREGATIONWRITEMASKSETTING_KEY
static final java.lang.String TAGAGGREGATIONWRITEMASKSETTING_KEY
- Deprecated. use TAG_AGGREGATION_WRITE_MASK_SETTING_KEY
- Configuration TAG_AGGREGATION_WRITE_MASK_SETTING_KEY key.
- See Also:
- Constant Field Values
TagWriteAggregatingExpression
static final java.lang.String TagWriteAggregatingExpression
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATING_EXPRESSION_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
- Constant Field Values
TAGWRITEAGGREGATINGEXPRESSION_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
TAGWRITEAGGREGATINGEXPRESSION_GET_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_GET_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_GET_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
TAG_WRITE_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/read"
TAGWRITEAGGREGATINGEXPRESSION_READ_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_READ_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_READ_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/read"
TAG_WRITE_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/write"
TAGWRITEAGGREGATINGEXPRESSION_WRITE_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_WRITE_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_WRITE_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/write"
TAG_WRITE_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/error"
TAGWRITEAGGREGATINGEXPRESSION_ERROR_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_ERROR_EXTERNAL_KEY
- The TagWriteAggregatingExpression is an LDAP expression to trigger the behavior of aggregating based on input pin and control values.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregatingExpression/error"
TAG_WRITE_AGGREGATING_EXPRESSION_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXPRESSION_KEY
- Configuration TAG_WRITE_AGGREGATING_EXPRESSION_KEY key.
- See Also:
- Constant Field Values
TAGWRITEAGGREGATINGEXPRESSION_KEY
static final java.lang.String TAGWRITEAGGREGATINGEXPRESSION_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXPRESSION_KEY
- Configuration TAG_WRITE_AGGREGATING_EXPRESSION_KEY key.
- See Also:
- Constant Field Values
TagWriteAggregating
static final java.lang.String TagWriteAggregating
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATING_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
- Constant Field Values
TAGWRITEAGGREGATING_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATING_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATING_GET_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_GET_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
TAGWRITEAGGREGATING_GET_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATING_GET_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_GET_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
TAG_WRITE_AGGREGATING_READ_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_READ_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/read"
TAGWRITEAGGREGATING_READ_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATING_READ_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_READ_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/read"
TAG_WRITE_AGGREGATING_WRITE_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_WRITE_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/write"
TAGWRITEAGGREGATING_WRITE_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATING_WRITE_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_WRITE_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/write"
TAG_WRITE_AGGREGATING_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATING_ERROR_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/error"
TAGWRITEAGGREGATING_ERROR_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATING_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATING_ERROR_EXTERNAL_KEY
- The TagWriteAggregating measurement specifies the state of aggregating behavior.
When the measurement value is true, the profile is collecting all tags which pass the Aggregation Write Mask.
When the measurement value is updated to false, the profile publishes the TagWriteAggregationReport signal, clears the aggregation cache, and stops collecting incoming tags.
If an LDAP expression is specified for the TagWriteAggregatingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregating/error"
WriteOperations
static final java.lang.String WriteOperations
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
- Constant Field Values
WRITEOPERATIONS_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONS_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
- Constant Field Values
WRITE_OPERATIONS_GET_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_GET_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
WRITEOPERATIONS_GET_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONS_GET_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_GET_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
WRITE_OPERATIONS_READ_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_READ_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/read"
WRITEOPERATIONS_READ_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONS_READ_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_READ_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/read"
WRITE_OPERATIONS_WRITE_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_WRITE_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/write"
WRITEOPERATIONS_WRITE_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONS_WRITE_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_WRITE_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/write"
WRITE_OPERATIONS_ERROR_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_ERROR_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/error"
WRITEOPERATIONS_ERROR_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONS_ERROR_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_ERROR_EXTERNAL_KEY
- The WriteOperations specifies the definition of write operations block against the tag(s).
A write operation block can contain multiple write operations seperated by the character ":".
A write operation is specified by parameters based on the operation, the parameters are seperated by.
the charactor ";".
The first parameter specifies the kind of write operation.
<ul >
<li>Operation Filter: Defines the tag filter to apply on the rest of the operations.
Format: Filter;MemoryBank;Match;BitPointer;TagMask;TagData
<ol>
<li>
Filter: Reserved name for the filter operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to be used for the filter.
</li>
<li>
Match: A boolean to specify if "match" or "not match" is applied for the filter.
</li>
<li>
BitPointer: It is the first bit location (zero based) of the data against
which to compare the mask.
</li>
<li>
TagMask: A hex String as the mask for the filter.
</li>
<li>
TagData: The the pattern against which the specified section of the tag data must match (or not match).
to pass the filter.
</li>
</ol>
</li>
<li>Operation Write: Defines the write operation on the specified memory bank on the tags.
Format: Write;MemoryBank;Pointer;WriteData;Password;OpCount;Timeout[;OperationId]
<ol>
<li>
Write: Reserved name for the write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The data for the write operation.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
OpCount: An integer to specify the times this write operation will be executed, it will be unlimited if the value is 0.
.
</li>
<li>
Timeout: The timeout value (milliseconds) for the write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the write operation.
</li>
</ol>
</li>
<li>Operation Increment Write: Defines an automatic incremental write on the specified memory bank on the tags.
Format: Increment Write;MemoryBank;Pointer;WriteData;Increment;Password;Repeat;Timeout[;OperationId].
<ol>
<li>
Increment Write: Reserved name for the increment write operation.
</li>
<li>
MemoryBank: An interger to specify the memory bank to written on.
</li>
<li>
Pointer: The first location (zero based) in the memory bank to start the write operation.
</li>
<li>
WriteData: The base data for the write operation.
</li>
<li>
Increment: An integer to specify the incremental value for each tag writing.
</li>
<li>
Password: The password for the write operation.
</li>
<li>
Repeat: An integer to specify the times the increment write operation will be executed,
it will be unlimited if the value is 0.
</li>
<li>
Timeout: The timeout value (milliseconds) for the increment write operation, no timeout if the value is 0.
</li>
<li>
OperationId: The optional parameter to assign an id to the increment write operation.
</li>
</ol>
</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>
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperations/error"
WRITE_OPERATIONS_KEY
static final java.lang.String WRITE_OPERATIONS_KEY
- Configuration WRITE_OPERATIONS_KEY key.
- See Also:
- Constant Field Values
WRITEOPERATIONS_KEY
static final java.lang.String WRITEOPERATIONS_KEY
- Deprecated. use WRITE_OPERATIONS_KEY
- Configuration WRITE_OPERATIONS_KEY key.
- See Also:
- Constant Field Values
WriteOperationsExpression
static final java.lang.String WriteOperationsExpression
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXPRESSION_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSEXPRESSION_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXPRESSION_GET_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_GET_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
WRITEOPERATIONSEXPRESSION_GET_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_GET_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_GET_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
WRITE_OPERATIONS_EXPRESSION_READ_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_READ_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/read"
WRITEOPERATIONSEXPRESSION_READ_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_READ_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_READ_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/read"
WRITE_OPERATIONS_EXPRESSION_WRITE_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_WRITE_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/write"
WRITEOPERATIONSEXPRESSION_WRITE_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_WRITE_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_WRITE_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/write"
WRITE_OPERATIONS_EXPRESSION_ERROR_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_ERROR_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/error"
WRITEOPERATIONSEXPRESSION_ERROR_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_ERROR_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_ERROR_EXTERNAL_KEY
- The WriteOperationsExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
If the state of this expression changes to true, then the current WriteOperations will be executed once.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#WRITE_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExpression/error"
WRITE_OPERATIONS_EXPRESSION_KEY
static final java.lang.String WRITE_OPERATIONS_EXPRESSION_KEY
- Configuration WRITE_OPERATIONS_EXPRESSION_KEY key.
- See Also:
- Constant Field Values
WRITEOPERATIONSEXPRESSION_KEY
static final java.lang.String WRITEOPERATIONSEXPRESSION_KEY
- Deprecated. use WRITE_OPERATIONS_EXPRESSION_KEY
- Configuration WRITE_OPERATIONS_EXPRESSION_KEY key.
- See Also:
- Constant Field Values
WriteOperationsExecuteStatus
static final java.lang.String WriteOperationsExecuteStatus
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXECUTE_STATUS_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_STATUS_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
- Constant Field Values
WRITEOPERATIONSEXECUTESTATUS_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTESTATUS_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_STATUS_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
- Constant Field Values
WRITE_OPERATIONS_EXECUTE_STATUS_GET_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_STATUS_GET_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
WRITEOPERATIONSEXECUTESTATUS_GET_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTESTATUS_GET_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_STATUS_GET_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
WRITE_OPERATIONS_EXECUTE_STATUS_READ_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_STATUS_READ_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteStatus/read"
WRITEOPERATIONSEXECUTESTATUS_READ_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTESTATUS_READ_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_STATUS_READ_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteStatus/read"
WRITE_OPERATIONS_EXECUTE_STATUS_ERROR_EXTERNAL_KEY
static final java.lang.String WRITE_OPERATIONS_EXECUTE_STATUS_ERROR_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteStatus/error"
WRITEOPERATIONSEXECUTESTATUS_ERROR_EXTERNAL_KEY
static final java.lang.String WRITEOPERATIONSEXECUTESTATUS_ERROR_EXTERNAL_KEY
- Deprecated. use WRITE_OPERATIONS_EXECUTE_STATUS_ERROR_EXTERNAL_KEY
- The WriteOperationsExecuteStatus specifies if the current WriteOperations are being executed.
If the status is true, sending a new WriteOperations or execute request will result in an exception.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
org.eclipse.soda.dk.notification.service.NotificationService#READ_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/WriteOperationsExecuteStatus/error"
TagWriteReport
static final java.lang.String TagWriteReport
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAG_WRITE_REPORT_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_REPORT_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAGWRITEREPORT_EXTERNAL_KEY
static final java.lang.String TAGWRITEREPORT_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_REPORT_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAG_WRITE_REPORT_TRIGGER_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_REPORT_TRIGGER_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
TAGWRITEREPORT_TRIGGER_EXTERNAL_KEY
static final java.lang.String TAGWRITEREPORT_TRIGGER_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_REPORT_TRIGGER_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
TAG_WRITE_REPORT_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_REPORT_ERROR_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteReport/error"
TAGWRITEREPORT_ERROR_EXTERNAL_KEY
static final java.lang.String TAGWRITEREPORT_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_REPORT_ERROR_EXTERNAL_KEY
- TagWriteReport is a signal containing tag write information in a map structure.
The report contains one to many tags stored at the "tags" key.
It may include data extension metadata stored at the "dataExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteReport/error"
TagWriteAggregationReport
static final java.lang.String TagWriteAggregationReport
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATION_REPORT_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATION_REPORT_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAGWRITEAGGREGATIONREPORT_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATIONREPORT_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATION_REPORT_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
- Constant Field Values
TAG_WRITE_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
TAGWRITEAGGREGATIONREPORT_TRIGGER_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATIONREPORT_TRIGGER_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATION_REPORT_TRIGGER_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
TAG_WRITE_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
static final java.lang.String TAG_WRITE_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregationReport/error"
TAGWRITEAGGREGATIONREPORT_ERROR_EXTERNAL_KEY
static final java.lang.String TAGWRITEAGGREGATIONREPORT_ERROR_EXTERNAL_KEY
- Deprecated. use TAG_WRITE_AGGREGATION_REPORT_ERROR_EXTERNAL_KEY
- TagWriteAggregationReport is a signal containing a collection of tag write information 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 "DataWriteExtensions" key.
See the tags and DataWriteExtensions descriptions for details.
.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#TRIGGER_EXTERNAL_KEY,
value of this field is "prefix/RfidWrite/TagWriteAggregationReport/error"
ALL_COMMANDS
static final java.lang.String[] ALL_COMMANDS
- Comprehensive list of all the command identifiers.
ALL_SIGNALS
static final java.lang.String[] ALL_SIGNALS
- Comprehensive list of all the signal identifiers.
ALL_MEASUREMENTS
static final java.lang.String[] ALL_MEASUREMENTS
- Comprehensive list of all the measurement identifiers.
TAGS_DATA_KEY
static final java.lang.String TAGS_DATA_KEY
- The value stored at the "tags" key of the TagWriteReport is a nested map which contains tag data, keyed by tag ID string.
Each tag ID is the index for a nested map which in turn contains write operation results, keyed by the operation ID string, value structure contains details about the write-events for that tag.
The event data map may include the keys "antenna", "count", "reader", "timestampFirst", "timestampLast", "dataExtensions", "resultCode" and "readData".
.
The value of this field is "tags"
- See Also:
- Constant Field Values
ANTENNA_DATA_KEY
static final java.lang.String ANTENNA_DATA_KEY
- The value stored at the "antenna" key of the write-event map is the antenna value, based on a starting index of 1.
It is included in the write-event map if the reader is configured to report which antenna wrote the tag.
The value of this field is "antenna"
- See Also:
- Constant Field Values
COUNT_DATA_KEY
static final java.lang.String COUNT_DATA_KEY
- The value stored at the "count" key of the write-event map is the number of times this tag was writen during the reporting cycle.
.
The value of this field is "count"
- See Also:
- Constant Field Values
READER_DATA_KEY
static final java.lang.String READER_DATA_KEY
- The value stored at the "reader" key of the read-event map is the ID property configured for this instance of the inventory profile.
The value of this field is "reader"
- See Also:
- Constant Field Values
TIMESTAMP_FIRST_DATA_KEY
static final java.lang.String TIMESTAMP_FIRST_DATA_KEY
- The value stored at the "timestampFirst" key of the write-event map is the initial timestamp that this tag was read during the reporting cycle.
The value of this field is "timestampFirst"
- See Also:
- Constant Field Values
TIMESTAMPFIRST_DATA_KEY
static final java.lang.String TIMESTAMPFIRST_DATA_KEY
- Deprecated. use TIMESTAMP_FIRST_DATA_KEY
- The value stored at the "timestampFirst" key of the write-event map is the initial timestamp that this tag was read during the reporting cycle.
The value of this field is "timestampFirst"
- See Also:
- Constant Field Values
TIMESTAMP_LAST_DATA_KEY
static final java.lang.String TIMESTAMP_LAST_DATA_KEY
- The value stored at the "timestampLast" key of the write-event map is the final timestamp that this tag was read during the reporting cycle.
The value of this field is "timestampLast"
- See Also:
- Constant Field Values
TIMESTAMPLAST_DATA_KEY
static final java.lang.String TIMESTAMPLAST_DATA_KEY
- Deprecated. use TIMESTAMP_LAST_DATA_KEY
- The value stored at the "timestampLast" key of the write-event map is the final timestamp that this tag was read during the reporting cycle.
The value of this field is "timestampLast"
- See Also:
- Constant Field Values
DATA_EXTENSIONS_DATA_KEY
static final java.lang.String DATA_EXTENSIONS_DATA_KEY
- The value stored at the "dataExtensions" key of the TagWriteReport or write-event map is a nested map of metadata as specified in the DataWriteExtensions measurement.
The value of this field is "dataExtensions"
- See Also:
- Constant Field Values
DATAEXTENSIONS_DATA_KEY
static final java.lang.String DATAEXTENSIONS_DATA_KEY
- Deprecated. use DATA_EXTENSIONS_DATA_KEY
- The value stored at the "dataExtensions" key of the TagWriteReport or write-event map is a nested map of metadata as specified in the DataWriteExtensions measurement.
The value of this field is "dataExtensions"
- See Also:
- Constant Field Values
RESULT_CODE_DATA_KEY
static final java.lang.String RESULT_CODE_DATA_KEY
- The value stored at the "resultCode" key of the TagWriteReport is the result code of the access operation.
.
The value of this field is "resultCode"
- See Also:
- Constant Field Values
RESULTCODE_DATA_KEY
static final java.lang.String RESULTCODE_DATA_KEY
- Deprecated. use RESULT_CODE_DATA_KEY
- The value stored at the "resultCode" key of the TagWriteReport is the result code of the access operation.
.
The value of this field is "resultCode"
- See Also:
- Constant Field Values
READ_DATA_DATA_KEY
static final java.lang.String READ_DATA_DATA_KEY
- The value stored at the "readData" key of the write-event map is the data of one of the tag memory bank requested by the read operation.
.
The value of this field is "readData"
- See Also:
- Constant Field Values
READDATA_DATA_KEY
static final java.lang.String READDATA_DATA_KEY
- Deprecated. use READ_DATA_DATA_KEY
- The value stored at the "readData" key of the write-event map is the data of one of the tag memory bank requested by the read operation.
.
The value of this field is "readData"
- See Also:
- Constant Field Values
SERVICE_DESCRIPTION
static final java.lang.String SERVICE_DESCRIPTION
- Description of the test.
- See Also:
- Constant Field Values
Status
static final java.lang.String Status
- Define the Rfid Write Profile Status measurement.
- See Also:
- Constant Field Values
STATUS_EXTERNAL_KEY
static final java.lang.String STATUS_EXTERNAL_KEY
- Define the Rfid Write Profile Status measurement.
- See Also:
- Constant Field Values
STATUS_GET_EXTERNAL_KEY
static final java.lang.String STATUS_GET_EXTERNAL_KEY
- Define the Rfid Write Profile Status measurement.
STATUS_ERROR_EXTERNAL_KEY
static final java.lang.String STATUS_ERROR_EXTERNAL_KEY
- Define the Rfid Write Profile Status measurement.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWriteProfile/Status/error"
Configuration
static final java.lang.String Configuration
- Define the Rfid Write Profile Configuration measurement.
- See Also:
- Constant Field Values
CONFIGURATION_EXTERNAL_KEY
static final java.lang.String CONFIGURATION_EXTERNAL_KEY
- Define the Rfid Write Profile Configuration measurement.
- See Also:
- Constant Field Values
CONFIGURATION_GET_EXTERNAL_KEY
static final java.lang.String CONFIGURATION_GET_EXTERNAL_KEY
- Define the Rfid Write Profile Configuration measurement.
CONFIGURATION_ERROR_EXTERNAL_KEY
static final java.lang.String CONFIGURATION_ERROR_EXTERNAL_KEY
- Define the Rfid Write Profile Configuration measurement.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWriteProfile/Configuration/error"
Capabilities
static final java.lang.String Capabilities
- Define the Rfid Write Profile Capabilities measurement.
- See Also:
- Constant Field Values
CAPABILITIES_EXTERNAL_KEY
static final java.lang.String CAPABILITIES_EXTERNAL_KEY
- Define the Rfid Write Profile Capabilities measurement.
- See Also:
- Constant Field Values
CAPABILITIES_GET_EXTERNAL_KEY
static final java.lang.String CAPABILITIES_GET_EXTERNAL_KEY
- Define the Rfid Write Profile Capabilities measurement.
CAPABILITIES_ERROR_EXTERNAL_KEY
static final java.lang.String CAPABILITIES_ERROR_EXTERNAL_KEY
- Define the Rfid Write Profile Capabilities measurement.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWriteProfile/Capabilities/error"
Metrics
static final java.lang.String Metrics
- Define the Rfid Write Profile Metrics measurement.
- See Also:
- Constant Field Values
METRICS_EXTERNAL_KEY
static final java.lang.String METRICS_EXTERNAL_KEY
- Define the Rfid Write Profile Metrics measurement.
- See Also:
- Constant Field Values
METRICS_GET_EXTERNAL_KEY
static final java.lang.String METRICS_GET_EXTERNAL_KEY
- Define the Rfid Write Profile Metrics measurement.
METRICS_ERROR_EXTERNAL_KEY
static final java.lang.String METRICS_ERROR_EXTERNAL_KEY
- Define the Rfid Write Profile Metrics measurement.
- See Also:
org.eclipse.soda.dk.notification.service.NotificationService#GET_EXTERNAL_KEY,
value of this field is "prefix/RfidWriteProfile/Metrics/error"
TAGWRITINGEXPRESSION_KEY
static final java.lang.String TAGWRITINGEXPRESSION_KEY
- Configuration TAGWRITINGEXPRESSION_KEY key.
Generated field and should not be changed.
- See Also:
- Constant Field Values
CLEAN_FILTER
static final java.lang.String CLEAN_FILTER
- Define the clean filter (String) constant.
- See Also:
- Constant Field Values
FILTER
static final java.lang.String FILTER
- Define the filter (String) constant.
- See Also:
- Constant Field Values
INCREMENT_WRITE
static final java.lang.String INCREMENT_WRITE
- Define the increment write (String) constant.
- See Also:
- Constant Field Values
OP_PARAMETER_SEPERATOR
static final char OP_PARAMETER_SEPERATOR
- Define the op parameter seperator (char) constant.
- See Also:
- Constant Field Values
OPERATION_SEPERATOR
static final char OPERATION_SEPERATOR
- Define the operation seperator (char) constant.
- See Also:
- Constant Field Values
READ
static final java.lang.String READ
- Define the read (String) constant.
- See Also:
- Constant Field Values
READDATA_KEY
static final java.lang.String READDATA_KEY
- Define the readdata key (String) constant.
- See Also:
- Constant Field Values
RESULT_CODE_KEY
static final java.lang.String RESULT_CODE_KEY
- Define the result code key (String) constant.
- See Also:
- Constant Field Values
STOP
static final java.lang.String STOP
- Define the stop (String) constant.
- See Also:
- Constant Field Values
WRITE
static final java.lang.String WRITE
- Define the write (String) constant.
- See Also:
- Constant Field Values
KILL
static final java.lang.String KILL
- Define the kill (String) constant.
- See Also:
- Constant Field Values
LOCK
static final java.lang.String LOCK
- Define the lock (String) constant.
- See Also:
- Constant Field Values
BLOCKERASE
static final java.lang.String BLOCKERASE
- Define the blockerase (String) constant.
- See Also:
- Constant Field Values
BLOCKWRITE
static final java.lang.String BLOCKWRITE
- Define the blockwrite (String) constant.
- See Also:
- Constant Field Values
TAGWRITING_EXTERNAL_KEY
static final java.lang.String TAGWRITING_EXTERNAL_KEY
- The TagWriting measurement specifies the state of writing behavior.
The TagWriting measurement specifies the state of writing behavior.
When the measurement is true, the reader is writing 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 TagWritingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
- Constant Field Values
TAGWRITING_GET_EXTERNAL_KEY
static final java.lang.String TAGWRITING_GET_EXTERNAL_KEY
- The TagWriting measurement specifies the state of writing behavior.
The TagWriting measurement specifies the state of writing behavior.
When the measurement is true, the reader is writing 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 TagWritingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
TagWriting
static final java.lang.String TagWriting
- The TagWriting measurement specifies the state of writing behavior.
The TagWriting measurement specifies the state of writing behavior.
When the measurement is true, the reader is writing 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 TagWritingExpression, a publication to write a value to this measurement will result in an exception and will not update the measurement value.
.
- See Also:
- Constant Field Values
TAGWRITINGEXPRESSION_EXTERNAL_KEY
static final java.lang.String TAGWRITINGEXPRESSION_EXTERNAL_KEY
- The TagWritingExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
- See Also:
- Constant Field Values
TAGWRITINGEXPRESSION_GET_EXTERNAL_KEY
static final java.lang.String TAGWRITINGEXPRESSION_GET_EXTERNAL_KEY
- The TagWritingExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
TagWritingExpression
static final java.lang.String TagWritingExpression
- The TagWritingExpression is an LDAP expression to trigger the state of tag writing based on input pin and control values.
- See Also:
- Constant Field Values
Copyright (c) 2008 IBM. See license in Legal section.