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

eu.xenit.apix.workflow.model.Workflow Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.workflow.model;

import eu.xenit.apix.utils.SerializableUtils;
import java.io.Serializable;
import java.util.Map;

public class Workflow implements ITaskOrWorkflow {

    public String id;
    public Map properties;

    public Workflow() {
    }

    public Map getProperties() {
        return properties;
    }

    public void setProperties(Map properties) {
        this.properties = properties;
    }

    @Override
    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String GetStringProperty(String property) {
        Serializable value = properties.get(property);
        return SerializableUtils.toString(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy