org.activiti.bpmn.model.Import 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 Import extends BaseElement {
protected String importType;
protected String location;
protected String namespace;
public String getImportType() {
return importType;
}
public void setImportType(String importType) {
this.importType = importType;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
}