Package org.apache.camel.k.quarkus.it
Class Application
- java.lang.Object
-
- org.apache.camel.k.quarkus.it.Application
-
@Path("/test") @ApplicationScoped public class Application extends Object
-
-
Constructor Summary
Constructors Constructor Description Application()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.json.JsonObject
inspect()
javax.json.JsonObject
inspectContext()
javax.json.JsonObject
properties()
String
property(String name)
-
-
-
Method Detail
-
inspect
@GET @Path("/inspect") @Produces("application/json") public javax.json.JsonObject inspect()
-
inspectContext
@GET @Path("/inspect/context") @Produces("application/json") public javax.json.JsonObject inspectContext()
-
property
@GET @Path("/property/{name}") @Produces("text/plain") public String property(@PathParam("name") String name)
-
properties
@GET @Path("/properties") @Produces("application/json") public javax.json.JsonObject properties()
-
-