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 UserChart. getOwner()UserFile. getOwner()UserGame. getOwner()UserGraph. getOwner()UserView. getOwner()UserPersistentToken. getUser()Methods in org.powertac.visualizer.domain with parameters of type User Modifier and Type Method Description booleanFile. delete(User user)booleanFile. exists(User user)StringFile. getPath(User user)voidChart. setOwner(User user)voidFile. setOwner(User user)voidGame. setOwner(User user)voidGraph. setOwner(User user)voidView. setOwner(User user)voidPersistentToken. 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 FileFileType. getDirectory(User user)FileFileType. 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 UserUserRepository. 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 UserUserService. createUser(String login, String password, String firstName, String lastName, String langKey)UserUserService. createUser(UserDTO userDTO)UserUserService. getUserWithAuthorities()UserUserService. 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 FileFileService. 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 StringEmbeddedService. runBootGame(Game game, User user)StringEmbeddedService. 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 UserUserMapper. userDTOToUser(UserDTO userDTO)UserUserMapperImpl. userDTOToUser(UserDTO userDTO)default UserUserMapper. 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 UserDTOUserMapper. userToUserDTO(User user)UserDTOUserMapperImpl. 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)
-