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