Uses of Class
cz.zcu.students.cacha.bp_server.domain.Showcase
-
-
Uses of Showcase in cz.zcu.students.cacha.bp_server.controllers
Methods in cz.zcu.students.cacha.bp_server.controllers with parameters of type Showcase Modifier and Type Method Description GenericResponse
LocationController. saveShowcase(@Valid Showcase showcase, Long roomId, User user)
Saves new showcase to given room defined by idGenericResponse
LocationController. updateShowcase(@Valid Showcase showcase, Long showcaseId, User user)
Updates showcase information based on its id -
Uses of Showcase in cz.zcu.students.cacha.bp_server.repositories
Methods in cz.zcu.students.cacha.bp_server.repositories that return types with arguments of type Showcase Modifier and Type Method Description Optional<Showcase>
ShowcaseRepository. findByIdAndRoom(Long showcaseId, Room room)
Gets showcase by its id and roomOptional<Showcase>
ShowcaseRepository. findByNameAndRoom(String name, Room room)
Gets showcase by its name and room -
Uses of Showcase in cz.zcu.students.cacha.bp_server.services
Methods in cz.zcu.students.cacha.bp_server.services with parameters of type Showcase Modifier and Type Method Description void
LocationService. saveShowcase(Showcase showcase, Long roomId, User user)
Saves new showcase to room defined by idvoid
LocationService. updateShowcase(Showcase updatedShowcase, Long showcaseId, User user)
Updates showcase defined by id with new information -
Uses of Showcase in cz.zcu.students.cacha.bp_server.view_models
Constructors in cz.zcu.students.cacha.bp_server.view_models with parameters of type Showcase Constructor Description ShowcaseVM(Showcase showcase)
creates new instance based on given show-case
-