org.activiti.bpmn.model.ItemDefinition 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;
public class ItemDefinition extends BaseElement {
protected String structureRef;
protected String itemKind;
public String getStructureRef() {
return structureRef;
}
public void setStructureRef(String structureRef) {
this.structureRef = structureRef;
}
public String getItemKind() {
return itemKind;
}
public void setItemKind(String itemKind) {
this.itemKind = itemKind;
}
}