Class CoreMainResource

java.lang.Object
org.apache.camel.quarkus.main.CoreMainResource

@Path("/test") @ApplicationScoped public class CoreMainResource extends Object
  • Field Details

    • main

      @Inject org.apache.camel.quarkus.main.CamelMain main
  • Constructor Details

    • CoreMainResource

      public CoreMainResource()
  • Method Details

    • getProperty

      @Path("/property/{name}") @GET @Produces("text/plain") public String getProperty(@PathParam("name") String name) throws Exception
      Throws:
      Exception
    • exchangeFormatterConfig

      @Path("/registry/log/exchange-formatter") @GET @Produces("application/json") public jakarta.json.JsonObject exchangeFormatterConfig()
    • getCamelContextName

      @Path("/context/name") @GET @Produces("text/plain") public String getCamelContextName()
    • setCamelContextName

      @Path("/context/name") @POST @Produces("text/plain") public String setCamelContextName(String name)
    • describeMain

      @Path("/main/describe") @GET @Produces("application/json") public jakarta.json.JsonObject describeMain()
    • reactiveExecutor

      @Path("/context/reactive-executor") @GET @Produces("text/plain") public jakarta.json.JsonObject reactiveExecutor()
    • threadPoolFactory

      @Path("/context/thread-pool-factory") @GET @Produces("text/plain") public jakarta.json.JsonObject threadPoolFactory()
    • fromStringToMyPair

      @Path("/converter/my-pair") @POST @Produces("application/json") public jakarta.json.JsonObject fromStringToMyPair(String input)
    • describeRegistryComponent

      @Path("/registry/component/{name}") @GET @Produces("application/json") public jakarta.json.JsonObject describeRegistryComponent(@PathParam("name") String name)
    • getStringValueFromRegistry

      @Path("/registry/string/{name}") @GET @Produces("text/plain") public String getStringValueFromRegistry(@PathParam("name") String name)