Search in sources :

Example 1 with ApisDelegate

use of org.wso2.ei.dashboard.micro.integrator.delegates.ApisDelegate in project product-mi-tooling by wso2.

the class GroupsApi method getApisByNodeIds.

@GET
@Path("/{group-id}/apis")
@Produces({ "application/json" })
@Operation(summary = "Get APIs by node ids", description = "", tags = { "apis" })
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "List of APIs 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 getApisByNodeIds(@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) {
    ApisDelegate apisDelegate = new ApisDelegate();
    Artifacts apiList = apisDelegate.getArtifactsList(groupId, nodes);
    Response.ResponseBuilder responseBuilder = Response.ok().entity(apiList);
    HttpUtils.setHeaders(responseBuilder);
    return responseBuilder.build();
}
Also used : Response(javax.ws.rs.core.Response) ApiResponse(io.swagger.v3.oas.annotations.responses.ApiResponse) CAppArtifacts(org.wso2.ei.dashboard.core.rest.model.CAppArtifacts) Artifacts(org.wso2.ei.dashboard.core.rest.model.Artifacts) ApisDelegate(org.wso2.ei.dashboard.micro.integrator.delegates.ApisDelegate) Operation(io.swagger.v3.oas.annotations.Operation) ApiResponses(io.swagger.v3.oas.annotations.responses.ApiResponses)

Aggregations

Operation (io.swagger.v3.oas.annotations.Operation)1 ApiResponse (io.swagger.v3.oas.annotations.responses.ApiResponse)1 ApiResponses (io.swagger.v3.oas.annotations.responses.ApiResponses)1 Response (javax.ws.rs.core.Response)1 Artifacts (org.wso2.ei.dashboard.core.rest.model.Artifacts)1 CAppArtifacts (org.wso2.ei.dashboard.core.rest.model.CAppArtifacts)1 ApisDelegate (org.wso2.ei.dashboard.micro.integrator.delegates.ApisDelegate)1