use of org.apache.nifi.registry.flow.Position in project nifi by apache.
the class NiFiRegistryFlowMapper method mapPosition.
public Position mapPosition(final org.apache.nifi.connectable.Position pos) {
final Position position = new Position();
position.setX(pos.getX());
position.setY(pos.getY());
return position;
}
Aggregations