Class PlanregistratieController

java.lang.Object
nl.b3p.planmonitorwonen.api.controller.PlanregistratieController

@RestController @Profile("!test") public class PlanregistratieController extends Object
  • Constructor Details

  • Method Details

    • planregistraties

      @GetMapping(path="${planmonitor-wonen-api.base-path}/planregistraties") public Set<Planregistratie> planregistraties(@RequestParam(required=false) boolean details)
    • details

      @GetMapping(path="${planmonitor-wonen-api.base-path}/planregistratie/{id}/details") public Map<String,Object> details(@PathVariable("id") String id)
    • put

      @PutMapping(path="${planmonitor-wonen-api.base-path}/planregistratie/{id}") public org.springframework.http.ResponseEntity<?> put(@PathVariable("id") String id, @RequestBody PlanregistratieComplete planregistratieComplete) throws org.locationtech.jts.io.ParseException
      Throws:
      org.locationtech.jts.io.ParseException
    • delete

      @DeleteMapping(path="${planmonitor-wonen-api.base-path}/planregistratie/{id}") public org.springframework.http.ResponseEntity<?> delete(@PathVariable("id") String id)