Uses of Class
com.cyran.tp.server.users.Users
Package | Description |
---|---|
com.cyran.tp.server.orders | |
com.cyran.tp.server.users |
-
Uses of Users in com.cyran.tp.server.orders
-
Uses of Users in com.cyran.tp.server.users
Methods in com.cyran.tp.server.users that return Users Modifier and Type Method Description Users[]
UsersRepository. findByEmail(java.lang.String emailU)
Selects users according email except admin - it is used for searchUsers[]
UsersRepository. findByName(java.lang.String nameU)
Selects users according name except admin - it is used for searchUsers
UsersRepository. getByEmail(java.lang.String string)
Selects only one user according email except admin, otherwise it failsUsers
UsersRepository. getByName(java.lang.String string)
Selects only one user according name except admin, otherwise it failsstatic Users
UsersUtils. removePassFromUsers(Users users)
Removes password from userMethods in com.cyran.tp.server.users that return types with arguments of type Users Modifier and Type Method Description java.util.List<Users>
UserClassRepository. all()
Gets all Users from DBjava.util.List<Users>
UsersRepository. findAll()
Gets all userjava.util.List<Users>
UserControllerRDBS. getAll(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Returns all usersMethods in com.cyran.tp.server.users with parameters of type Users Modifier and Type Method Description static Users
UsersUtils. removePassFromUsers(Users users)
Removes password from uservoid
UserClassRepository. save(Users emp)
Saves user to DBstatic UsersDTO
UsersUtils. userToDtoMapping(Users users)
Creates UserDTO instances from User instancesstatic UsersDTO[]
UsersUtils. userToDtoMapping(Users[] users)
Creates UserDTO instances from User instancesstatic UsersDTO
UsersUtils. userToDtoMapping(Users users, java.lang.String priviledges)
Creates UserDTO instances from User instancesMethod parameters in com.cyran.tp.server.users with type arguments of type Users Modifier and Type Method Description static UsersDTO[]
UsersUtils. userToDtoMapping(java.util.List<Users> users)
Creates UserDTO instances from User instances