Class BasicWriteRequest
java.lang.Object
com.inductiveautomation.ignition.gateway.util.BasicWriteRequest
- All Implemented Interfaces:
OPCWriteRequest
A basic implementation of OPCWriteRequest. Stores a ServerNodeId and Value.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBasicWriteRequest
(ServerNodeId nodeId, Object value) Constructor that takes the id of the item to write to, and the value.BasicWriteRequest
(ServerNodeId nodeId, Object value, IndexRange indexRange) BasicWriteRequest
(String serverName, String itemPath, Object value) Convenience constructor to build a write request out of basic values.BasicWriteRequest
(String serverName, String itemPath, Object value, IndexRange indexRange) -
Method Summary
Modifier and TypeMethodDescriptionIf present, the node identified byOPCWriteRequest.getNodeId()
is an array this value should be written to the element or elements at the givenIndexRange
.The id to write togetValue()
The value to writetoString()
-
Field Details
-
nodeId
-
value
-
indexRange
-
-
Constructor Details
-
BasicWriteRequest
Convenience constructor to build a write request out of basic values. Creates a server node id automatically, with a string based identifier in namespace 0. If a different namespace is required, the ServerNodeId should be constructed manually and passed to the other constructor. -
BasicWriteRequest
public BasicWriteRequest(String serverName, String itemPath, Object value, @Nullable IndexRange indexRange) -
BasicWriteRequest
Constructor that takes the id of the item to write to, and the value. -
BasicWriteRequest
-
-
Method Details
-
getNodeId
Description copied from interface:OPCWriteRequest
The id to write to- Specified by:
getNodeId
in interfaceOPCWriteRequest
-
getValue
Description copied from interface:OPCWriteRequest
The value to write- Specified by:
getValue
in interfaceOPCWriteRequest
-
getIndexRange
Description copied from interface:OPCWriteRequest
If present, the node identified byOPCWriteRequest.getNodeId()
is an array this value should be written to the element or elements at the givenIndexRange
.- Specified by:
getIndexRange
in interfaceOPCWriteRequest
- Returns:
- if present, the
IndexRange
to write this value to.
-
toString
-