Object Data
Data Object used to carry Java objects through a pipeline. It is recommended that only Serializable objects be carried by this data object if the pipeline will be traversing between systems.
Class name: com.datashyft.pipeline.dataobjects.ObjectData
ObjectData(Object object) — Constructs a new Object Data object containing the specified object. The object is not copied, so changes to it by outside code can modify the state of the object.
ObjectData(Map<String, List<String> tags, String type, Object object) — Constructs a new Object Data object containing the specified object and tags, and with the specified type. The object is not copied, so changes to it by outside code can modify the state of the object.
getObject() — Returns the object contained within this data object.