com.fivefaces.cloud.workflow.WorkflowExecutionResult Maven / Gradle / Ivy
package com.fivefaces.cloud.workflow;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@AllArgsConstructor
public class WorkflowExecutionResult {
private final String executionId;
private final String status;
private final String output;
private final Object debug;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy