streampipes-model/src/main/java/org/apache/streampipes/model/connect/rules/schema/MoveRuleDescription.java [41:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    super(other);
    this.oldRuntimeKey = other.getOldRuntimeKey();
    this.newRuntimeKey = other.getNewRuntimeKey();
  }

  public String getOldRuntimeKey() {
    return oldRuntimeKey;
  }

  public void setOldRuntimeKey(String oldRuntimeKey) {
    this.oldRuntimeKey = oldRuntimeKey;
  }

  public String getNewRuntimeKey() {
    return newRuntimeKey;
  }

  public void setNewRuntimeKey(String newRuntimeKey) {
    this.newRuntimeKey = newRuntimeKey;
  }

  @Override
  public void accept(ITransformationRuleVisitor visitor) {
    visitor.visit(this);
  }

  @Override
  public int getRulePriority() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



streampipes-model/src/main/java/org/apache/streampipes/model/connect/rules/schema/RenameRuleDescription.java [41:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    super(other);
    this.oldRuntimeKey = other.getOldRuntimeKey();
    this.newRuntimeKey = other.getNewRuntimeKey();
  }

  public String getOldRuntimeKey() {
    return oldRuntimeKey;
  }

  public void setOldRuntimeKey(String oldRuntimeKey) {
    this.oldRuntimeKey = oldRuntimeKey;
  }

  public String getNewRuntimeKey() {
    return newRuntimeKey;
  }

  public void setNewRuntimeKey(String newRuntimeKey) {
    this.newRuntimeKey = newRuntimeKey;
  }

  @Override
  public void accept(ITransformationRuleVisitor visitor) {
    visitor.visit(this);
  }

  @Override
  public int getRulePriority() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



