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