All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.bpmn.model.Assignment Maven / Gradle / Ivy

package org.activiti.bpmn.model;

public class Assignment extends BaseElement {

  protected String from;
  protected String to;

  public String getFrom() {
    return from;
  }

  public void setFrom(String from) {
    this.from = from;
  }

  public String getTo() {
    return to;
  }

  public void setTo(String to) {
    this.to = to;
  }

  public Assignment clone() {
    Assignment clone = new Assignment();
    clone.setValues(this);
    return clone;
  }

  public void setValues(Assignment otherAssignment) {
    setFrom(otherAssignment.getFrom());
    setTo(otherAssignment.getTo());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy