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