Uses of Class
com.netgrif.application.engine.auth.domain.User
-
-
Uses of User in com.netgrif.application.engine.auth.domain
Subclasses of User in com.netgrif.application.engine.auth.domain Modifier and Type Class Description class
AnonymousUser
Constructors in com.netgrif.application.engine.auth.domain with parameters of type User Constructor Description User(User user)
Constructor parameters in com.netgrif.application.engine.auth.domain with type arguments of type User Constructor Description QUser(com.querydsl.core.types.Path<? extends User> path)
QUser(java.lang.Class<? extends User> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits)
-
Uses of User in com.netgrif.application.engine.auth.domain.repositories
Methods in com.netgrif.application.engine.auth.domain.repositories that return User Modifier and Type Method Description User
UserRepository. findByEmail(java.lang.String email)
Methods in com.netgrif.application.engine.auth.domain.repositories that return types with arguments of type User Modifier and Type Method Description java.util.List<User>
UserRepository. findAllBy_idIn(java.util.Set<org.bson.types.ObjectId> ids)
org.springframework.data.domain.Page<User>
UserRepository. findAllBy_idInAndState(java.util.Set<org.bson.types.ObjectId> ids, UserState state, org.springframework.data.domain.Pageable pageable)
java.util.List<User>
UserRepository. findAllByIdIn(java.util.Set<java.lang.String> ids)
java.util.List<User>
UserRepository. findAllByProcessRoles__idIn(java.util.List<java.lang.String> roleId)
java.util.List<User>
UserRepository. findAllByStateAndExpirationDateBefore(UserState userState, java.time.LocalDateTime dateTime)
org.springframework.data.domain.Page<User>
UserRepository. findDistinctByStateAndProcessRoles__idIn(UserState state, java.util.List<java.lang.String> roleId, org.springframework.data.domain.Pageable pageable)
java.util.List<User>
UserRepository. removeAllByStateAndExpirationDateBefore(UserState state, java.time.LocalDateTime dateTime)
-
Uses of User in com.netgrif.application.engine.auth.service
Methods in com.netgrif.application.engine.auth.service that return User Modifier and Type Method Description User
RegistrationService. createNewUser(NewUserRequest newUser)
User
UserService. update(IUser user, UpdateUserRequest updates)
Methods in com.netgrif.application.engine.auth.service with parameters of type User Modifier and Type Method Description void
UserService. addAnonymousAuthorities(User user)
void
UserService. addAnonymousRole(User user)
void
UserService. addDefaultAuthorities(User user)
void
UserService. addDefaultRole(User user)
-
Uses of User in com.netgrif.application.engine.ldap.domain
Subclasses of User in com.netgrif.application.engine.ldap.domain Modifier and Type Class Description class
LdapUser
-
Uses of User in com.netgrif.application.engine.startup
Methods in com.netgrif.application.engine.startup with parameters of type User Modifier and Type Method Description IUser
ImportHelper. createUser(User user, Authority[] authorities, ProcessRole... roles)
-