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