mirror of https://github.com/apache/nifi.git
parent
979671ca97
commit
908ec18b59
|
@ -22,6 +22,7 @@ public interface LineageNode {
|
|||
* @return the identifier of the Clustered NiFi Node that generated the
|
||||
* event
|
||||
*/
|
||||
@Deprecated
|
||||
String getClusterNodeIdentifier();
|
||||
|
||||
/**
|
||||
|
|
|
@ -36,11 +36,13 @@ public class EventNode implements ProvenanceEventLineageNode {
|
|||
return String.valueOf(getEventIdentifier());
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Override
|
||||
public String getClusterNodeIdentifier() {
|
||||
return clusterNodeIdentifier;
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public void setClusterNodeIdentifier(final String nodeIdentifier) {
|
||||
this.clusterNodeIdentifier = nodeIdentifier;
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@ public class FlowFileNode implements LineageNode {
|
|||
return creationTime;
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Override
|
||||
public String getClusterNodeIdentifier() {
|
||||
return clusterNodeIdentifier;
|
||||
|
|
Loading…
Reference in New Issue