use of org.wso2.ei.dashboard.micro.integrator.delegates.ProxyServiceDelegate in project product-mi-tooling by wso2.
the class GroupsApi method getProxyServicesByNodeIds.
@GET
@Path("/{group-id}/proxy-services")
@Produces({ "application/json" })
@Operation(summary = "Get proxy services by node ids", description = "", tags = { "proxyServices" })
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "List of proxy services 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 getProxyServicesByNodeIds(@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) {
ProxyServiceDelegate proxyServiceDelegate = new ProxyServiceDelegate();
Artifacts proxyList = proxyServiceDelegate.getArtifactsList(groupId, nodes);
Response.ResponseBuilder responseBuilder = Response.ok().entity(proxyList);
HttpUtils.setHeaders(responseBuilder);
return responseBuilder.build();
}
Aggregations