Interface ProjectWorkflowContextLocator
- All Known Implementing Classes:
DefaultProjectWorkflowContextLocator
@Nonnull
public interface ProjectWorkflowContextLocator
Locator for a
ProjectWorkflowContext.
All arguments are assumed to be non-null unless otherwise noted.- Since:
- v7.4
-
Method Summary
Modifier and TypeMethodDescriptiongetContext(String projectKey, String workflowName) Find aProjectWorkflowContextfor the passed project and workflow name.
-
Method Details
-
getContext
@Nonnull ServiceOutcome<ProjectWorkflowContext> getContext(@Nonnull String projectKey, @Nonnull String workflowName) Find aProjectWorkflowContextfor the passed project and workflow name.- Parameters:
projectKey- the projectKey to search.workflowName- the workflowName to search.- Returns:
- the result of the operation. The
ServiceOutcomeeither contains errors or theProjectWorkflowContextif the operation was successful.
-