Class AutomationDiagnostics.OperationRecord
java.lang.Object
neqsim.process.automation.AutomationDiagnostics.OperationRecord
- All Implemented Interfaces:
Serializable
- Enclosing class:
AutomationDiagnostics
Tracks a single automation operation for learning.
- Version:
- 1.0
- Author:
- Even Solbraa
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOperationRecord(String operationType, String address, boolean success, String errorCategory, String correction) Creates an operation record. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
operationType
-
address
-
success
final boolean success -
errorCategory
-
correction
-
timestamp
final long timestamp
-
-
Constructor Details
-
OperationRecord
OperationRecord(String operationType, String address, boolean success, String errorCategory, String correction) Creates an operation record.- Parameters:
operationType- the type of operation (get, set, list)address- the address usedsuccess- whether the operation succeedederrorCategory- the error category if failed, null if succeededcorrection- the correction applied, null if none
-