Class CoreMainResource


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

      • main

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

      • CoreMainResource

        public CoreMainResource()
    • Method Detail

      • 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 javax.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 javax.json.JsonObject describeMain()
      • reactiveExecutor

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

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

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

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

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