Class JsonPathResource


  • @Path("/jsonpath")
    @ApplicationScoped
    public class JsonPathResource
    extends Object
    • Field Detail

      • producerTemplate

        @Inject
        org.apache.camel.ProducerTemplate producerTemplate
    • Constructor Detail

      • JsonPathResource

        public JsonPathResource()
    • 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)
      • getAllCarColors

        @Path("/getAllCarColors")
        @GET
        @Consumes("application/json")
        @Produces("text/plain")
        public String getAllCarColors​(String carsRequestJson)