Class XPathResource

java.lang.Object
org.apache.camel.quarkus.language.xpath.XPathResource

@Path("/xpath") @ApplicationScoped public class XPathResource extends Object
  • Field Details

    • template

      @Inject org.apache.camel.ProducerTemplate template
    • priceBean

      @Inject @Named("priceBean") PriceBean priceBean
  • Constructor Details

    • XPathResource

      public XPathResource()
  • Method Details

    • transform

      @Path("/transform") @GET @Consumes("text/plain") @Produces("text/plain") public String transform(String xml)
    • choice

      @Path("/choice") @GET @Consumes("text/plain") @Produces("text/plain") public String choice(String xml)
    • coreXPathFunctions

      @Path("/coreXPathFunctions") @GET @Consumes("text/plain") @Produces("text/plain") public String coreXPathFunctions(String xml)
    • camelXPathFunctions

      @Path("/camelXPathFunctions") @GET @Consumes("text/plain") @Produces("text/plain") public String camelXPathFunctions(String fooHeaderValue)
    • resource

      @Path("/resource") @GET @Consumes("text/plain") @Produces("text/plain") public String resource(String xml)
    • annotation

      @Path("/annotation") @GET @Consumes("text/plain") @Produces("text/plain") public String annotation(String xml)
    • properties

      @Path("/properties") @GET @Consumes("text/plain") @Produces("text/plain") public String properties(String typeHeaderValue)
    • simple

      @Path("/simple") @GET @Consumes("text/plain") @Produces("text/plain") public String simple(String xml)