Package nl.b3p.formendpoint.controller
Class FormTreeInspectionController
- java.lang.Object
-
- nl.b3p.formendpoint.controller.FormTreeInspectionController
-
- All Implemented Interfaces:
FormController<TreeInspection>
@RestController @RequestMapping("boominspectie") public class FormTreeInspectionController extends Object implements FormController<TreeInspection>
-
-
Field Summary
-
Fields inherited from interface nl.b3p.formendpoint.controller.FormController
attributefilter
-
-
Constructor Summary
Constructors Constructor Description FormTreeInspectionController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(String objectGuid)TreeInspectionget(String objectGuid)List<TreeInspection>getAll()org.springframework.data.domain.Page<TreeInspection>getAllPaged(org.springframework.data.domain.Pageable pageable)ClassgetMaintainingClass()List<TreeInspection>onPoint(double x, double y, double scale)TreeInspectionsave(TreeInspection wv, String parentId)TreeInspectionupdate(String objectGuid, TreeInspection 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 TreeInspection get(@PathVariable String objectGuid)- Specified by:
getin interfaceFormController<TreeInspection>
-
onPoint
public List<TreeInspection> onPoint(double x, double y, double scale)
- Specified by:
onPointin interfaceFormController<TreeInspection>
-
getAllPaged
@GetMapping public org.springframework.data.domain.Page<TreeInspection> getAllPaged(org.springframework.data.domain.Pageable pageable)
- Specified by:
getAllPagedin interfaceFormController<TreeInspection>
-
getAll
@GetMapping("/unpaged") public List<TreeInspection> getAll()- Specified by:
getAllin interfaceFormController<TreeInspection>
-
save
@PostMapping public TreeInspection save(@RequestBody TreeInspection wv, String parentId)
- Specified by:
savein interfaceFormController<TreeInspection>
-
update
@PutMapping("/{objectGuid}") public TreeInspection update(@PathVariable String objectGuid, @RequestBody TreeInspection wv)- Specified by:
updatein interfaceFormController<TreeInspection>
-
delete
@DeleteMapping("/{objectGuid}") public void delete(@PathVariable String objectGuid)- Specified by:
deletein interfaceFormController<TreeInspection>
-
getMaintainingClass
public Class getMaintainingClass()
- Specified by:
getMaintainingClassin interfaceFormController<TreeInspection>
-
-