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

io.convergence_platform.common.dag.WorkflowStepNameID Maven / Gradle / Ivy

Go to download

Holds the common functionality needed by all Convergence Platform-based services written in Java.

The newest version!
package io.convergence_platform.common.dag;

import com.fasterxml.jackson.annotation.JsonProperty;

public class WorkflowStepNameID {
    @JsonProperty("id")
    public String id;

    @JsonProperty("name")
    public String name;

    public static WorkflowStepNameID from(WorkflowStepInfo step) {
        if (step == null) {
            int h = 0;
        }
        WorkflowStepNameID result = new WorkflowStepNameID();

        result.id = step.id;
        result.name = step.name;

        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy