Class QuartzResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.quartz.it.QuartzResource
-
@Path("/quartz") public class QuartzResource extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.apache.camel.CamelContextcamelContext(package private) org.apache.camel.ConsumerTemplateconsumerTemplate
-
Constructor Summary
Constructors Constructor Description QuartzResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.camel.component.quartz.QuartzComponentcreateQuartzFromProperties()Map<String,String>getHeaders(String fromEndpoint)Map<String,String>getMisfire(String fromEndpoint)Map<String,String>getSchedulerNameAndResult(String componentName, String fromEndpoint)StringgetSchedulerResult(String fromEndpoint)
-
-
-
Method Detail
-
createQuartzFromProperties
@Produces @Singleton @Named("quartzFromProperties") public org.apache.camel.component.quartz.QuartzComponent createQuartzFromProperties()
-
getSchedulerNameAndResult
@Path("/getNameAndResult") @GET @Produces("application/json") public Map<String,String> getSchedulerNameAndResult(@QueryParam("componentName") String componentName, @QueryParam("fromEndpoint") String fromEndpoint) throws Exception- Throws:
Exception
-
getSchedulerResult
@Path("/get") @GET @Produces("text/plain") public String getSchedulerResult(@QueryParam("fromEndpoint") String fromEndpoint) throws Exception- Throws:
Exception
-
getHeaders
@Path("/getHeaders") @GET @Produces("application/json") public Map<String,String> getHeaders(@QueryParam("fromEndpoint") String fromEndpoint) throws Exception- Throws:
Exception
-
-