org.activiti.bpmn.model.Interface 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 Interface extends BaseElement {
protected String name;
protected String implementationRef;
protected List operations = new ArrayList();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getImplementationRef() {
return implementationRef;
}
public void setImplementationRef(String implementationRef) {
this.implementationRef = implementationRef;
}
public List getOperations() {
return operations;
}
public void setOperations(List operations) {
this.operations = operations;
}
}