Uses of Class
de.fraunhofer.iese.mydata.user.User
-
Packages that use User Package Description de.fraunhofer.iese.mydata.affiliation de.fraunhofer.iese.mydata.oauth de.fraunhofer.iese.mydata.solution de.fraunhofer.iese.mydata.user -
-
Uses of User in de.fraunhofer.iese.mydata.affiliation
Methods in de.fraunhofer.iese.mydata.affiliation that return types with arguments of type User Modifier and Type Method Description Set<User>
Affiliation. getUsers()
needed for JPA/Hibernate if the users set is null, a new set is initializedMethods in de.fraunhofer.iese.mydata.affiliation with parameters of type User Modifier and Type Method Description void
Affiliation. addUser(@NonNull User user)
needed for JPA/Hibernate a user, if not null, is added to the current list of users for this affiliationvoid
Affiliation. removeUser(@NonNull User user)
needed for JPA/Hibernate a user, if not null, is removed from the current list of users for this affiliationMethod parameters in de.fraunhofer.iese.mydata.affiliation with type arguments of type User Modifier and Type Method Description void
Affiliation. setUsers(@NonNull Set<User> users)
needed for JPA/Hibernate if the users set is null, a new set is initialized, else, it re-uses the previous object then updates the current list (set) of users for this affiliation -
Uses of User in de.fraunhofer.iese.mydata.oauth
Constructors in de.fraunhofer.iese.mydata.oauth with parameters of type User Constructor Description PasswordResetToken(User user)
-
Uses of User in de.fraunhofer.iese.mydata.solution
Methods in de.fraunhofer.iese.mydata.solution that return types with arguments of type User Modifier and Type Method Description Set<User>
Solution. getUsers()
Methods in de.fraunhofer.iese.mydata.solution with parameters of type User Modifier and Type Method Description void
Solution. addUser(User u)
void
Solution. removeUser(User u)
Method parameters in de.fraunhofer.iese.mydata.solution with type arguments of type User Modifier and Type Method Description void
Solution. setUsers(Set<User> users)
-
Uses of User in de.fraunhofer.iese.mydata.user
Methods in de.fraunhofer.iese.mydata.user that return User Modifier and Type Method Description User
IUserService. getUser(String userId)
Gets the user.User
IUserService. getUserByName(String username)
Get a user by user nameMethods in de.fraunhofer.iese.mydata.user that return types with arguments of type User Modifier and Type Method Description Set<User>
IUserService. getUsers(boolean includeLocked)
Set<User>
IUserService. getUsers(AffiliationId affiliationId, boolean includeLocked)
Gets the users.Set<User>
IUserService. getUsers(SolutionId solutionId, boolean includeLocked)
Gets the users.Methods in de.fraunhofer.iese.mydata.user with parameters of type User Modifier and Type Method Description String
IUserService. addSuperAdmin(User userModel)
Adds the super admin.String
IUserService. addUser(User userModel, AffiliationId affiliationId)
Adds the user.PasswordResetToken
ITokenService. getTokenForUser(User user)
void
IUserService. updateUser(User userModel)
Update user.
-