Package service
Interface ICoursServiceClient
-
- All Known Implementing Classes:
CoursServiceClient
public interface ICoursServiceClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
createCours(Cours cours)
javax.ws.rs.core.Response
deleteCours(java.lang.Long id)
java.util.List<Cours>
getAllCours()
Cours
getCoursById(java.lang.Long id)
javax.ws.rs.core.Response
updateCours(java.lang.Long id, Cours cours)
-
-
-
Method Detail
-
getAllCours
java.util.List<Cours> getAllCours()
-
getCoursById
Cours getCoursById(java.lang.Long id)
-
createCours
javax.ws.rs.core.Response createCours(Cours cours)
-
updateCours
javax.ws.rs.core.Response updateCours(java.lang.Long id, Cours cours)
-
deleteCours
javax.ws.rs.core.Response deleteCours(java.lang.Long id)
-
-