Class XsltResource

java.lang.Object
org.apache.camel.quarkus.component.xml.it.XsltResource

@Path("/xml") @ApplicationScoped public class XsltResource extends Object
  • Field Details

    • producerTemplate

      @Inject org.apache.camel.ProducerTemplate producerTemplate
    • consumerTemplate

      @Inject org.apache.camel.ConsumerTemplate consumerTemplate
    • camelContext

      @Inject org.apache.camel.CamelContext camelContext
  • Constructor Details

    • XsltResource

      public XsltResource()
  • Method Details

    • classpath

      @Path("/xslt") @POST @Produces("text/plain") public String classpath(@QueryParam("output") @DefaultValue("string") String output, String body)
    • xsltInclude

      @Path("/xslt_include") @POST @Produces("text/plain") public String xsltInclude(String body)
    • xsltTerminate

      @Path("/xslt_terminate") @POST @Produces("text/plain") public String xsltTerminate(String body)
    • extensionFunction

      @Path("/xslt-extension-function") @POST @Produces("text/plain") public String extensionFunction(String body)
    • customURIResolver

      @Path("/xslt-custom-uri-resolver") @POST @Produces("text/plain") public String customURIResolver(String body)
    • aggregate

      @Path("/aggregate") @GET @Produces("text/plain") public String aggregate() throws Exception
      Throws:
      Exception
    • htmlTransform

      @Path("/html-transform") @POST @Consumes("text/html") @Produces("text/plain") public String htmlTransform(String html)
    • htmlToText

      @Path("/html-to-text") @POST @Consumes("text/html") @Produces("text/plain") public String htmlToText(String html)
    • xpath

      @Path("/xpath") @POST @Consumes("application/xml") @Produces("text/plain") public String xpath(String message)
    • tokenize

      @Path("/xtokenize") @POST @Consumes("application/xml") @Produces("text/plain") public String tokenize(String message)