Class JobController


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

      Constructors 
      Constructor Description
      JobController()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.springframework.hateoas.Resources<JobResource> all()  
      JobResource get​(java.lang.String jobName)  
      • Methods inherited from class java.lang.Object

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

      • JobController

        public JobController()
    • Method Detail

      • get

        @GetMapping("/{jobName}")
        public JobResource get​(@PathVariable
                               java.lang.String jobName)
      • all

        @GetMapping
        public org.springframework.hateoas.Resources<JobResource> all()