Interface ParameterV2Api
@Path("/v2/parameters/{productName}/{appId}")
@RegisterRestClient(baseUri="http://onecx-parameter/",
configKey="onecx_parameter")
@ApplicationScoped
@RegisterClientHeaders(HeadersFactory.class)
public interface ParameterV2Api
onecx-parameters v2
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.ResponsebucketRequest(String productName, String appId, ParametersBucket parametersBucket) Create history and usage of parameters on the client side.jakarta.ws.rs.core.ResponsegetParameters(String productName, String appId) Get currently defined parameters of the application in the product.
-
Method Details
-
bucketRequest
@POST @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response bucketRequest(@PathParam("productName") String productName, @PathParam("appId") String appId, ParametersBucket parametersBucket) Create history and usage of parameters on the client side.- Parameters:
productName-appId-parametersBucket-
-
getParameters
@GET @Produces("application/json") jakarta.ws.rs.core.Response getParameters(@PathParam("productName") String productName, @PathParam("appId") String appId) Get currently defined parameters of the application in the product.- Parameters:
productName-appId-
-