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