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