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

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

The newest version!
package org.activiti.bpmn.model;

public class DataStore extends BaseElement {
  
  protected String name;
  protected String dataState;
  protected String itemSubjectRef;
  
  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getDataState() {
    return dataState;
  }

  public void setDataState(String dataState) {
    this.dataState = dataState;
  }

  public String getItemSubjectRef() {
    return itemSubjectRef;
  }

  public void setItemSubjectRef(String itemSubjectRef) {
    this.itemSubjectRef = itemSubjectRef;
  }

  public DataStore clone() {
    DataStore clone = new DataStore();
    clone.setValues(this);
    return clone;
  }
  
  public void setValues(DataStore otherElement) {
    super.setValues(otherElement);
    setName(otherElement.getName());
    setDataState(otherElement.getDataState());
    setItemSubjectRef(otherElement.getItemSubjectRef());
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy