io.convergence_platform.common.dag.WorkflowStepDependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
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 WorkflowStepDependency {
@JsonProperty("step_name")
public WorkflowStepNameID step = null;
@JsonProperty("dependency_name")
public WorkflowStepNameID dependency = null;
}