org.activiti.bpmn.model.DataAssociation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activiti-bpmn-model Show documentation
Show all versions of activiti-bpmn-model Show documentation
workflow engine base on bboss and activiti.
The newest version!
package org.activiti.bpmn.model;
import java.util.ArrayList;
import java.util.List;
public class DataAssociation extends BaseElement {
protected String sourceRef;
protected String targetRef;
protected String transformation;
protected List assignments = new ArrayList();
public String getSourceRef() {
return sourceRef;
}
public void setSourceRef(String sourceRef) {
this.sourceRef = sourceRef;
}
public String getTargetRef() {
return targetRef;
}
public void setTargetRef(String targetRef) {
this.targetRef = targetRef;
}
public String getTransformation() {
return transformation;
}
public void setTransformation(String transformation) {
this.transformation = transformation;
}
public List getAssignments() {
return assignments;
}
public void setAssignments(List assignments) {
this.assignments = assignments;
}
}