001 002package gudusoft.gsqlparser.dlineage.dataflow.model; 003 004public class ImpactRelationship extends AbstractRelationship { 005 006 private JoinRelationship.JoinClauseType joinClauseType; 007 008 @Override 009 public RelationshipType getRelationshipType() { 010 return RelationshipType.fdr; 011 } 012 013 public JoinRelationship.JoinClauseType getJoinClauseType() { 014 return joinClauseType; 015 } 016 017 public void setJoinClauseType(JoinRelationship.JoinClauseType joinClauseType) { 018 this.joinClauseType = joinClauseType; 019 } 020}