Class DataFlowElement
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.metadataelements.DataFlowElement
-
- All Implemented Interfaces:
Serializable
public class DataFlowElement extends Object implements Serializable
DataFlowElement contains the properties and header for a data flow relationship retrieved from the metadata repository.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataFlowElement()Default constructorDataFlowElement(DataFlowElement template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.ElementHeadergetDataConsumer()Return the element header associated with end 2 of the relationship.ElementHeadergetDataFlowHeader()Return the element header associated with the relationship.DataFlowPropertiesgetDataFlowProperties()Return details of the relationshipElementHeadergetDataSupplier()Return the element header associated with end 1 of the relationship.inthashCode()Return hash code for this objectvoidsetDataConsumer(ElementHeader dataConsumer)Set up the element header associated with end 2 of the relationship.voidsetDataFlowHeader(ElementHeader dataFlowHeader)Set up the element header associated with the relationship.voidsetDataFlowProperties(DataFlowProperties dataFlowProperties)Set up relationship propertiesvoidsetDataSupplier(ElementHeader dataSupplier)Set up the element header associated with end 1 of the relationship.StringtoString()JSON-style toString
-
-
-
Constructor Detail
-
DataFlowElement
public DataFlowElement()
Default constructor
-
DataFlowElement
public DataFlowElement(DataFlowElement template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getDataFlowHeader
public ElementHeader getDataFlowHeader()
Return the element header associated with the relationship.- Returns:
- element header object
-
setDataFlowHeader
public void setDataFlowHeader(ElementHeader dataFlowHeader)
Set up the element header associated with the relationship.- Parameters:
dataFlowHeader- element header object
-
getDataFlowProperties
public DataFlowProperties getDataFlowProperties()
Return details of the relationship- Returns:
- relationship properties
-
setDataFlowProperties
public void setDataFlowProperties(DataFlowProperties dataFlowProperties)
Set up relationship properties- Parameters:
dataFlowProperties- relationship properties
-
getDataSupplier
public ElementHeader getDataSupplier()
Return the element header associated with end 1 of the relationship.- Returns:
- element header object
-
setDataSupplier
public void setDataSupplier(ElementHeader dataSupplier)
Set up the element header associated with end 1 of the relationship.- Parameters:
dataSupplier- element header object
-
getDataConsumer
public ElementHeader getDataConsumer()
Return the element header associated with end 2 of the relationship.- Returns:
- element header object
-
setDataConsumer
public void setDataConsumer(ElementHeader dataConsumer)
Set up the element header associated with end 2 of the relationship.- Parameters:
dataConsumer- element header object
-
toString
public String toString()
JSON-style toString
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.
-
-