Class PlanregistratieController
java.lang.Object
nl.b3p.planmonitorwonen.api.controller.PlanregistratieController
-
Constructor Summary
ConstructorDescriptionPlanregistratieController
(PlanmonitorWonenDatabaseService planmonitorWonenDatabaseService) -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?>
planregistraties
(boolean details) org.springframework.http.ResponseEntity<?>
put
(String id, PlanregistratieComplete planregistratieComplete)
-
Constructor Details
-
PlanregistratieController
-
-
Method Details
-
planregistraties
@GetMapping(path="${planmonitor-wonen-api.base-path}/planregistraties") public Set<Planregistratie> planregistraties(@RequestParam(required=false) boolean details) -
details
-
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)
-