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

com.fivefaces.cloud.workflow.WorkflowExecutionResult Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
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