com.connecterra.alepc.api
Interface WriteOpSpec

All Superinterfaces:
OpSpec
All Known Implementing Classes:
EngineWriteOpSpec

public interface WriteOpSpec
extends OpSpec

Operation Spec representing a request to write data to the tag. It contains a URI object that specifies which field of the tag to write to, and a DataSpec that specifies the source of the data to write into that region of the tag.

A WriteOpSpec is created through the #ALEPCFactory, using the createWriteOpSpec method.


Method Summary
 DataSpec getDataSpec()
          Returns the DataSpec representing the method used to retrieve the data to write to the tag.
 java.net.URI getField()
          Returns the tag memory location URI representing the field to write to.
 

Method Detail

getField

public java.net.URI getField()
Returns the tag memory location URI representing the field to write to. See the programming guide for the format of this URI.

Returns:
the tag memory location URI representing the field to write to

getDataSpec

public DataSpec getDataSpec()
Returns the DataSpec representing the method used to retrieve the data to write to the tag.

Returns:
the DataSpec to retrieve the password for this tag.