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

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

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy