Class JsonPathResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.json.path.it.JsonPathResource
-
@Path("/jsonpath") @ApplicationScoped public class JsonPathResource extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.apache.camel.ProducerTemplateproducerTemplate
-
Constructor Summary
Constructors Constructor Description JsonPathResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAllCarColors(String carsRequestJson)StringgetBookPrice(String storeRequestJson)StringgetBookPriceLevel(String storeRequestJson)StringgetFullName(String personRequestJson)
-
-
-
Method Detail
-
getBookPriceLevel
@Path("/getBookPriceLevel") @GET @Consumes("application/json") @Produces("text/plain") public String getBookPriceLevel(String storeRequestJson)
-
getBookPrice
@Path("/getBookPrice") @GET @Consumes("application/json") @Produces("text/plain") public String getBookPrice(String storeRequestJson)
-
getFullName
@Path("/getFullName") @GET @Consumes("application/json") @Produces("text/plain") public String getFullName(String personRequestJson)
-
-