use of org.wso2.ei.dashboard.micro.integrator.delegates.TasksDelegate in project product-mi-tooling by wso2.
the class GroupsApi method getTasksByNodeIds.
@GET
@Path("/{group-id}/tasks")
@Produces({ "application/json" })
@Operation(summary = "Get tasks by node ids", description = "", tags = { "tasks" })
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "List of tasks deployed in provided nodes", content = @Content(schema = @Schema(implementation = Artifacts.class))), @ApiResponse(responseCode = "200", description = "Unexpected error", content = @Content(schema = @Schema(implementation = Error.class))) })
public Response getTasksByNodeIds(@PathParam("group-id") @Parameter(description = "Group ID of the node") String groupId, @NotNull @QueryParam("nodes") @Parameter(description = "ID/IDs of the nodes") List<String> nodes) {
TasksDelegate tasksDelegate = new TasksDelegate();
Artifacts tasksList = tasksDelegate.getArtifactsList(groupId, nodes);
Response.ResponseBuilder responseBuilder = Response.ok().entity(tasksList);
HttpUtils.setHeaders(responseBuilder);
return responseBuilder.build();
}
Aggregations