Class KameletReifyApplication
- java.lang.Object
-
- org.apache.camel.k.quarkus.kameletreify.KameletReifyApplication
-
@Path("/test") @ApplicationScoped public class KameletReifyApplication extends Object
-
-
Constructor Summary
Constructors Constructor Description KameletReifyApplication()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.jms.ConnectionFactory
activeMQConnectionFactory(String brokerUrl)
javax.json.JsonObject
inspect()
String
receive()
void
request(String payload)
-
-
-
Method Detail
-
inspect
@GET @Path("/inspect") @Produces("application/json") public javax.json.JsonObject inspect()
-
request
@POST @Path("/request") @Consumes("text/plain") public void request(String payload)
-
receive
@GET @Path("/receive") @Produces("text/plain") public String receive()
-
activeMQConnectionFactory
@Named("amqcf") public javax.jms.ConnectionFactory activeMQConnectionFactory(String brokerUrl)
-
-