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