Package nl.b3p.formendpoint.controller
Class FormRoadInspectionController
- java.lang.Object
-
- nl.b3p.formendpoint.controller.FormRoadInspectionController
-
- All Implemented Interfaces:
FormController<RoadInspection>
@RestController @RequestMapping("weginspectie") public class FormRoadInspectionController extends Object implements FormController<RoadInspection>
-
-
Field Summary
-
Fields inherited from interface nl.b3p.formendpoint.controller.FormController
attributefilter
-
-
Constructor Summary
Constructors Constructor Description FormRoadInspectionController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(String objectGuid)RoadInspectionget(String objectGuid)List<RoadInspection>getAll()org.springframework.data.domain.Page<RoadInspection>getAllPaged(org.springframework.data.domain.Pageable pageable)ClassgetMaintainingClass()List<RoadInspection>onPoint(double x, double y, double scale)RoadInspectionsave(RoadInspection wv, String parentId)RoadInspectionupdate(String objectGuid, RoadInspection wv)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface nl.b3p.formendpoint.controller.FormController
getMaintainingClassString
-
-
-
-
Method Detail
-
get
@GetMapping("/{objectGuid}") public RoadInspection get(@PathVariable String objectGuid)- Specified by:
getin interfaceFormController<RoadInspection>
-
onPoint
public List<RoadInspection> onPoint(double x, double y, double scale)
- Specified by:
onPointin interfaceFormController<RoadInspection>
-
getAllPaged
@GetMapping public org.springframework.data.domain.Page<RoadInspection> getAllPaged(org.springframework.data.domain.Pageable pageable)
- Specified by:
getAllPagedin interfaceFormController<RoadInspection>
-
getAll
@GetMapping("/unpaged") public List<RoadInspection> getAll()- Specified by:
getAllin interfaceFormController<RoadInspection>
-
save
@PostMapping public RoadInspection save(@RequestBody RoadInspection wv, String parentId)
- Specified by:
savein interfaceFormController<RoadInspection>
-
update
@PutMapping("/{objectGuid}") public RoadInspection update(@PathVariable String objectGuid, @RequestBody RoadInspection wv)- Specified by:
updatein interfaceFormController<RoadInspection>
-
delete
@DeleteMapping("/{objectGuid}") public void delete(@PathVariable String objectGuid)- Specified by:
deletein interfaceFormController<RoadInspection>
-
getMaintainingClass
public Class getMaintainingClass()
- Specified by:
getMaintainingClassin interfaceFormController<RoadInspection>
-
-