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