Uses of Class
org.powertac.visualizer.domain.User
-
Packages that use User Package Description org.powertac.visualizer.domain JPA domain objects.org.powertac.visualizer.domain.enumeration org.powertac.visualizer.repository Spring Data JPA repositories.org.powertac.visualizer.service Service layer beans.org.powertac.visualizer.service_ptac org.powertac.visualizer.service.dto Data Transfer Objects.org.powertac.visualizer.service.mapper MapStruct mappers for mapping domain objects and Data Transfer Objects. -
-
Uses of User in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return User Modifier and Type Method Description User
Chart. getOwner()
User
File. getOwner()
User
Game. getOwner()
User
Graph. getOwner()
User
View. getOwner()
User
PersistentToken. getUser()
Methods in org.powertac.visualizer.domain with parameters of type User Modifier and Type Method Description boolean
File. delete(User user)
boolean
File. exists(User user)
String
File. getPath(User user)
void
Chart. setOwner(User user)
void
File. setOwner(User user)
void
Game. setOwner(User user)
void
Graph. setOwner(User user)
void
View. setOwner(User user)
void
PersistentToken. setUser(User user)
-
Uses of User in org.powertac.visualizer.domain.enumeration
Methods in org.powertac.visualizer.domain.enumeration with parameters of type User Modifier and Type Method Description File
FileType. getDirectory(User user)
File
FileType. getFile(User user, String name)
-
Uses of User in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return User Modifier and Type Method Description User
UserRepository. findOneWithAuthoritiesById(Long id)
Methods in org.powertac.visualizer.repository that return types with arguments of type User Modifier and Type Method Description org.springframework.data.domain.Page<User>
UserRepository. findAllByLoginNot(org.springframework.data.domain.Pageable pageable, String login)
Optional<User>
UserRepository. findOneByLogin(String login)
Optional<User>
UserRepository. findOneWithAuthoritiesByLogin(String login)
Methods in org.powertac.visualizer.repository with parameters of type User Modifier and Type Method Description List<PersistentToken>
PersistentTokenRepository. findByUser(User user)
-
Uses of User in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return User Modifier and Type Method Description User
UserService. createUser(String login, String password, String firstName, String lastName, String langKey)
User
UserService. createUser(UserDTO userDTO)
User
UserService. getUserWithAuthorities()
User
UserService. getUserWithAuthorities(Long id)
Methods in org.powertac.visualizer.service that return types with arguments of type User Modifier and Type Method Description Optional<User>
UserService. getUserByLogin(String login)
Optional<User>
UserService. getUserWithAuthoritiesByLogin(String login)
Methods in org.powertac.visualizer.service with parameters of type User Modifier and Type Method Description File
FileService. createFile(FileType type, String name, User owner)
Create a new file -
Uses of User in org.powertac.visualizer.service_ptac
Methods in org.powertac.visualizer.service_ptac with parameters of type User Modifier and Type Method Description String
EmbeddedService. runBootGame(Game game, User user)
String
EmbeddedService. runSimGame(Game game, User user)
-
Uses of User in org.powertac.visualizer.service.dto
Constructors in org.powertac.visualizer.service.dto with parameters of type User Constructor Description UserDTO(User user)
-
Uses of User in org.powertac.visualizer.service.mapper
Methods in org.powertac.visualizer.service.mapper that return User Modifier and Type Method Description User
UserMapper. userDTOToUser(UserDTO userDTO)
User
UserMapperImpl. userDTOToUser(UserDTO userDTO)
default User
UserMapper. userFromId(Long id)
Methods in org.powertac.visualizer.service.mapper that return types with arguments of type User Modifier and Type Method Description List<User>
UserMapper. userDTOsToUsers(List<UserDTO> userDTOs)
List<User>
UserMapperImpl. userDTOsToUsers(List<UserDTO> userDTOs)
Methods in org.powertac.visualizer.service.mapper with parameters of type User Modifier and Type Method Description UserDTO
UserMapper. userToUserDTO(User user)
UserDTO
UserMapperImpl. userToUserDTO(User user)
Method parameters in org.powertac.visualizer.service.mapper with type arguments of type User Modifier and Type Method Description List<UserDTO>
UserMapper. usersToUserDTOs(List<User> users)
List<UserDTO>
UserMapperImpl. usersToUserDTOs(List<User> users)
-