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