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