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