nl.vpro.nep.domain.workflow.WorkflowExecutionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.domain.workflow;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
/**
* @since 5.6
*/
@Getter
@lombok.Builder
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public class WorkflowExecutionResponse implements Serializable {
@Serial
private static final long serialVersionUID = -1979597113983375616L;
private List workflowExecutions;
public WorkflowExecutionResponse() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy