@Path(value="/")
public interface ClientServices
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
disabledTracing() |
javax.ws.rs.core.Response |
executeNested(int nestDepth,
int nestBreadth,
boolean async,
String uniqueID,
boolean failNest) |
CompletionStage<javax.ws.rs.core.Response> |
executeNestedAsync(int nestDepth,
int nestBreadth,
boolean async,
String uniqueID,
boolean failNest) |
@GET @Path(value="nestedMpRestClient") @Produces(value="text/plain") javax.ws.rs.core.Response executeNested(@QueryParam(value="nestDepth") int nestDepth, @QueryParam(value="nestBreadth") int nestBreadth, @QueryParam(value="async") boolean async, @QueryParam(value="data") String uniqueID, @QueryParam(value="failNest") boolean failNest)
@GET @Path(value="nestedMpRestClient") @Produces(value="text/plain") CompletionStage<javax.ws.rs.core.Response> executeNestedAsync(@QueryParam(value="nestDepth") int nestDepth, @QueryParam(value="nestBreadth") int nestBreadth, @QueryParam(value="async") boolean async, @QueryParam(value="data") String uniqueID, @QueryParam(value="failNest") boolean failNest)
Copyright © 2020 Eclipse Foundation. All rights reserved.