Class JobDetailController
- java.lang.Object
-
- com.github.chrisgleissner.springbatchrest.api.jobdetail.JobDetailController
-
@RestController @RequestMapping(value="/jobDetails", produces="application/hal+json") public class JobDetailController extends Object
-
-
Constructor Summary
Constructors Constructor Description JobDetailController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.hateoas.CollectionModel<JobDetailResource>
all(Boolean enabled, String springBatchJobName)
JobDetailResource
get(String quartzGroupName, String quartzJobName)
-
-
-
Method Detail
-
get
@GetMapping("/{quartzGroupName}/{quartzJobName}") public JobDetailResource get(@PathVariable String quartzGroupName, @PathVariable String quartzJobName)
-
all
@GetMapping public org.springframework.hateoas.CollectionModel<JobDetailResource> all(@RequestParam(value="enabled",required=false) Boolean enabled, @RequestParam(value="springBatchJobName",required=false) String springBatchJobName)
-
-