eu.xenit.apix.workflow.model.Task Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.workflow.model;
import eu.xenit.apix.utils.SerializableUtils;
import java.io.Serializable;
import java.util.Map;
public class Task implements ITaskOrWorkflow {
public String id;
public Map properties;
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public String GetStringProperty(String property) {
Serializable value = properties.get(property);
return SerializableUtils.toString(value);
}
@Override
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy