| 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.
|
| Modifier and Type | Method and Description |
|---|---|
User |
Chart.getOwner() |
User |
View.getOwner() |
User |
File.getOwner() |
User |
Graph.getOwner() |
User |
Game.getOwner() |
User |
PersistentToken.getUser() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
File.delete(User user) |
boolean |
File.exists(User user) |
String |
File.getPath(User user) |
void |
Chart.setOwner(User user) |
void |
View.setOwner(User user) |
void |
File.setOwner(User user) |
void |
Graph.setOwner(User user) |
void |
Game.setOwner(User user) |
void |
PersistentToken.setUser(User user) |
| Modifier and Type | Method and Description |
|---|---|
File |
FileType.getDirectory(User user) |
File |
FileType.getFile(User user,
String name) |
| Modifier and Type | Method and Description |
|---|---|
User |
UserRepository.findOneWithAuthoritiesById(Long id) |
| Modifier and Type | Method and 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) |
| Modifier and Type | Method and Description |
|---|---|
List<PersistentToken> |
PersistentTokenRepository.findByUser(User user) |
| Modifier and Type | Method and 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) |
| Modifier and Type | Method and Description |
|---|---|
Optional<User> |
UserService.getUserByLogin(String login) |
Optional<User> |
UserService.getUserWithAuthoritiesByLogin(String login) |
| Modifier and Type | Method and Description |
|---|---|
File |
FileService.createFile(FileType type,
String name,
User owner)
Create a new file
|
| Modifier and Type | Method and Description |
|---|---|
String |
EmbeddedService.runBootGame(Game game,
User user) |
String |
EmbeddedService.runSimGame(Game game,
User user) |
| Constructor and Description |
|---|
UserDTO(User user) |
| Modifier and Type | Method and Description |
|---|---|
User |
UserMapperImpl.userDTOToUser(UserDTO userDTO) |
User |
UserMapper.userDTOToUser(UserDTO userDTO) |
default User |
UserMapper.userFromId(Long id) |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
UserMapperImpl.userDTOsToUsers(List<UserDTO> userDTOs) |
List<User> |
UserMapper.userDTOsToUsers(List<UserDTO> userDTOs) |
| Modifier and Type | Method and Description |
|---|---|
UserDTO |
UserMapperImpl.userToUserDTO(User user) |
UserDTO |
UserMapper.userToUserDTO(User user) |
| Modifier and Type | Method and Description |
|---|---|
List<UserDTO> |
UserMapperImpl.usersToUserDTOs(List<User> users) |
List<UserDTO> |
UserMapper.usersToUserDTOs(List<User> users) |
Copyright © 2019 Power TAC. All rights reserved.