Class Application

java.lang.Object
org.apache.camel.k.quarkus.it.Application

@Path("/test") @ApplicationScoped public class Application extends Object
  • Constructor Details

    • Application

      public Application()
  • Method Details

    • inspect

      @GET @Path("/inspect") @Produces("application/json") public jakarta.json.JsonObject inspect()
    • execute

      @GET @Path("/execute/{id}") @Produces("text/plain") public String execute(@PathParam("id") String id)
    • invoke

      @POST @Path("/execute/{templateId}") @Consumes("text/plain") @Produces("text/plain") public String invoke(@PathParam("templateId") String templateId, String message)