Class ManagementResource

java.lang.Object
org.apache.camel.quarkus.component.management.it.ManagementResource

@Path("/management") public class ManagementResource extends Object
  • Field Details

    • template

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

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

    • ManagementResource

      public ManagementResource()
  • Method Details

    • getContextName

      @GET @Path("/context/name") @Produces("text/plain") public String getContextName()
    • getMBeanAttribute

      @GET @Path("/attribute") @Produces("text/plain") public String getMBeanAttribute(@QueryParam("name") String name, @QueryParam("attribute") String attribute) throws Exception
      Throws:
      Exception
    • invokeMBeanOperation

      @POST @Path("/invoke") @Produces("text/plain") public String invokeMBeanOperation(@QueryParam("name") String name, @QueryParam("operation") String operation) throws Exception
      Throws:
      Exception
    • invokeRoute

      @POST @Path("/invoke/route") public String invokeRoute(@QueryParam("endpointUri") String endpointUri)