Package com.orchestranetworks.service
Interface NodeDataTransformerContext
public interface NodeDataTransformerContext
Context used to transform data upon export.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the current data model node.Returns the procedure context associated with the archive export.getValue(SchemaNode aNode) Returns the value defined at the specified node.booleanReturnstrueif the archive export is performed in the context of a D3 broadcast.
-
Method Details
-
getCurrentSchemaNode
SchemaNode getCurrentSchemaNode()Returns the current data model node. -
getValue
Returns the value defined at the specified node. Onlyterminalnodes located in the same content (for example, in the same record) are interpreted, otherwise, an unpredictable result would be returned.- Throws:
UnsupportedOperationException- if the specified node is notterminalor iscomputed.
-
isExportingForD3
boolean isExportingForD3()Returnstrueif the archive export is performed in the context of a D3 broadcast. -
getProcedureContext
ProcedureContext getProcedureContext()Returns the procedure context associated with the archive export.
-