Class EngineerController
java.lang.Object
org.apache.clusterbr.zupportl5.controller.EngineerController
REST-API Endpoints --
- GET /api/engineers/id/{id:d+}: Returns data from the API
- PUT /api/engineers/{id}: Updates an entry by ID
- DELETE /api/engineers/{id}: Deletes an entry by ID
- GET /api/engineers/email/{email:.+@.+..+}: Returns data from the API
- PATCH /api/engineers/{id}: Partially updates an entry by ID
UML Diagrams:




- Since:
- 2024-1108
- Author:
- arcbrth@gmail.com
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Engineer>org.springframework.http.ResponseEntity<Void>getAll()org.springframework.http.ResponseEntity<Engineer>getByEmail(String email) org.springframework.http.ResponseEntity<Engineer>org.springframework.http.ResponseEntity<Engineer>partialUpdate(Long id, Map<String, Object> updates) org.springframework.http.ResponseEntity<Engineer>
-
Constructor Details
-
EngineerController
-
-
Method Details
-
create
-
getAll
-
getById
-
getByEmail
-
update
-
partialUpdate
-
delete
-