Uses of Class
de.bp2019.pusl.model.User
-
Packages that use User Package Description de.bp2019.pusl.model de.bp2019.pusl.repository de.bp2019.pusl.service de.bp2019.pusl.service.dataproviders de.bp2019.pusl.ui.views.user -
-
Uses of User in de.bp2019.pusl.model
Methods in de.bp2019.pusl.model that return User Modifier and Type Method Description User
Grade. getGradedBy()
Methods in de.bp2019.pusl.model that return types with arguments of type User Modifier and Type Method Description Set<User>
ExerciseScheme. getHasAccess()
Methods in de.bp2019.pusl.model with parameters of type User Modifier and Type Method Description void
Grade. setGradedBy(User gradedBy)
Method parameters in de.bp2019.pusl.model with type arguments of type User Modifier and Type Method Description void
ExerciseScheme. setHasAccess(Set<User> hasAccess)
-
Uses of User in de.bp2019.pusl.repository
Methods in de.bp2019.pusl.repository that return types with arguments of type User Modifier and Type Method Description Set<User>
UserRepository. findAllById(Set<org.bson.types.ObjectId> ids)
Optional<User>
UserRepository. findByEmailAddress(String emailAddress)
Stream<User>
UserRepository. findByInstitutesIn(Set<Institute> institutes, org.springframework.data.domain.Pageable pageable)
Stream<User>
UserRepository. findByInstitutesInAndType(Set<Institute> institutes, UserType type, org.springframework.data.domain.Pageable pageable)
List<User>
UserRepository. findByType(UserType type)
Stream<User>
UserRepository. findByType(UserType type, org.springframework.data.domain.Pageable pageable)
-
Uses of User in de.bp2019.pusl.service
Methods in de.bp2019.pusl.service that return User Modifier and Type Method Description User
AuthenticationService. currentUser()
Returns the currently logged in User as aUser
Object.User
UserService. getById(String id)
Get a User based on its Id.Methods in de.bp2019.pusl.service that return types with arguments of type User Modifier and Type Method Description Stream<User>
UserService. fetch(com.vaadin.flow.data.provider.Query<User,String> query)
Stream<User>
UserService. fetchHiwis(com.vaadin.flow.data.provider.Query<User,String> query, Set<Institute> institutes)
Set<User>
UserService. getByIds(Set<org.bson.types.ObjectId> ids)
Methods in de.bp2019.pusl.service with parameters of type User Modifier and Type Method Description void
UserService. delete(User user)
Delete a Uservoid
UserService. save(User user)
Save one UserMethod parameters in de.bp2019.pusl.service with type arguments of type User Modifier and Type Method Description Stream<User>
UserService. fetch(com.vaadin.flow.data.provider.Query<User,String> query)
Stream<User>
UserService. fetchHiwis(com.vaadin.flow.data.provider.Query<User,String> query, Set<Institute> institutes)
int
UserService. size(com.vaadin.flow.data.provider.Query<User,String> query)
int
UserService. sizeHiwis(com.vaadin.flow.data.provider.Query<User,String> query, Set<Institute> institutes)
-
Uses of User in de.bp2019.pusl.service.dataproviders
Methods in de.bp2019.pusl.service.dataproviders that return types with arguments of type User Modifier and Type Method Description Stream<User>
HiwiDataProvider. fetch(com.vaadin.flow.data.provider.Query<User,String> query)
Method parameters in de.bp2019.pusl.service.dataproviders with type arguments of type User Modifier and Type Method Description Stream<User>
HiwiDataProvider. fetch(com.vaadin.flow.data.provider.Query<User,String> query)
int
HiwiDataProvider. size(com.vaadin.flow.data.provider.Query<User,String> query)
-
Uses of User in de.bp2019.pusl.ui.views.user
Methods in de.bp2019.pusl.ui.views.user with parameters of type User Modifier and Type Method Description protected com.vaadin.flow.component.button.Button
ManageUsersView. createDeleteButton(User user)
Used to generate the delete button for each Grid Item
-