Package com.orchestranetworks.service
Interface NodeDataTransformerContext
-
public interface NodeDataTransformerContextContext used to transform data upon export.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaNodegetCurrentSchemaNode()Returns the current data model node.ProcedureContextgetProcedureContext()Returns the procedure context associated with the archive export.ObjectgetValue(SchemaNode aNode)Returns the value defined at the specified node.booleanisExportingForD3()Returnstrueif the archive export is performed in the context of a D3 broadcast.
-
-
-
Method Detail
-
getCurrentSchemaNode
SchemaNode getCurrentSchemaNode()
Returns the current data model node.
-
getValue
Object getValue(SchemaNode aNode)
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.
-
-