Package org.acumos.portal.be.service
Interface OnboardingHistoryService
-
- All Known Implementing Classes:
OnboardingHistoryServiceImpl
public interface OnboardingHistoryService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MLTask
getMSTaskStatus(String solutionId, String revisionId, String userId)
Searches for MicroService Task Status for a UserList<MLStepResult>
getStepResults(Long taskId)
Searches for all StepResults for a UserPagableResponse<List<MLTask>>
getTasks(RestPageRequestPortal pageRequestPortal, String userId)
Searches for all Tasks for a User
-
-
-
Method Detail
-
getTasks
PagableResponse<List<MLTask>> getTasks(RestPageRequestPortal pageRequestPortal, String userId)
Searches for all Tasks for a User- Parameters:
pageRequestPortal
- Page and sort criteriauserId
- UserID- Returns:
- List of MLTask, which may be empty.
-
getStepResults
List<MLStepResult> getStepResults(Long taskId)
Searches for all StepResults for a User- Parameters:
taskId
- TaskID- Returns:
- List of MLStepResult, which may be empty.
-
-