Class JobDetailController


  • @RestController
    @RequestMapping(value="/jobDetails",
                    produces="application/hal+json")
    public class JobDetailController
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.springframework.hateoas.Resources<JobDetailResource> all​(java.lang.Boolean enabled, java.lang.String springBatchJobName)  
      JobDetailResource get​(java.lang.String quartzGroupName, java.lang.String quartzJobName)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JobDetailController

        public JobDetailController()
    • Method Detail

      • get

        @GetMapping("/{quartzGroupName}/{quartzJobName}")
        public JobDetailResource get​(@PathVariable
                                     java.lang.String quartzGroupName,
                                     @PathVariable
                                     java.lang.String quartzJobName)
      • all

        @GetMapping
        public org.springframework.hateoas.Resources<JobDetailResource> all​(@RequestParam(value="enabled",required=false)
                                                                            java.lang.Boolean enabled,
                                                                            @RequestParam(value="springBatchJobName",required=false)
                                                                            java.lang.String springBatchJobName)