Class LineageSyncUpdateContext
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetlineage.model.LineageSyncUpdateContext
-
public class LineageSyncUpdateContext extends Object
SyncUpdateContext contains the context for syncing the relationships of a node after an update.
-
-
Constructor Summary
Constructors Constructor Description LineageSyncUpdateContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetEntityGUID()Get the GUID of the entity that was updatedSet<String>getNeighboursGUID()Get the list of GUIDs of nodes directly connected to the entityinthashCode()voidsetEntityGUID(String entityGUID)Set the entity that was updated.voidsetNeighboursGUID(Set<String> neighboursGUID)Set the list of neighboursStringtoString()
-
-
-
Method Detail
-
getEntityGUID
public String getEntityGUID()
Get the GUID of the entity that was updated- Returns:
- the GUID of the entity that was updated
-
getNeighboursGUID
public Set<String> getNeighboursGUID()
Get the list of GUIDs of nodes directly connected to the entity- Returns:
- the list of GUIDs of nodes directly connected to the entity
-
setEntityGUID
public void setEntityGUID(String entityGUID)
Set the entity that was updated.- Parameters:
entityGUID- of the entity that was updated
-
setNeighboursGUID
public void setNeighboursGUID(Set<String> neighboursGUID)
Set the list of neighbours- Parameters:
neighboursGUID- list of node related to the entity
-
canEqual
protected boolean canEqual(Object other)
-
-