Uses of Class
org.powertac.visualizer.domain.File
-
Packages that use File Package Description org.powertac.visualizer.domain JPA domain objects.org.powertac.visualizer.repository Spring Data JPA repositories.org.powertac.visualizer.service Service layer beans.org.powertac.visualizer.web.rest Spring MVC REST controllers. -
-
Uses of File in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return File Modifier and Type Method Description File
Game. getBootFile()
File
Game. getConfigFile()
File
Game. getSeedFile()
File
Game. getStateFile()
File
Game. getTraceFile()
File
Game. getWeatherFile()
Methods in org.powertac.visualizer.domain with parameters of type File Modifier and Type Method Description void
Game. setBootFile(File file)
void
Game. setConfigFile(File file)
void
Game. setSeedFile(File file)
void
Game. setStateFile(File file)
void
Game. setTraceFile(File file)
void
Game. setWeatherFile(File file)
-
Uses of File in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type File Modifier and Type Method Description List<File>
FileRepository. findByOwnerIsCurrentUser(String login, FileType type)
List<File>
FileRepository. findByOwnerIsCurrentUserOrShared(String login, FileType type)
Methods in org.powertac.visualizer.repository with parameters of type File Modifier and Type Method Description List<Game>
GameRepository. findByAssociatedFile(File file)
-
Uses of File in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return File Modifier and Type Method Description File
FileService. createFile(FileType type, String name, User owner)
Create a new fileFile
FileService. save(File file)
Save a file.Methods in org.powertac.visualizer.service that return types with arguments of type File Modifier and Type Method Description org.springframework.data.domain.Page<File>
FileService. findAll(org.springframework.data.domain.Pageable pageable)
Get all the files.List<File>
FileService. findByOwnerIsCurrentUser(String login, FileType type)
Get all the files owned by this user, plus all shared files.List<File>
FileService. findByOwnerIsCurrentUserOrShared(String login, FileType type)
Get all the files owned by this user, plus all shared files.Optional<File>
FileService. findOne(Long id)
Get one file by id.Methods in org.powertac.visualizer.service with parameters of type File Modifier and Type Method Description void
FileService. delete(File file)
Delete the file.List<Game>
GameService. findByAssociatedFile(File file)
File
FileService. save(File file)
Save a file. -
Uses of File in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type File Modifier and Type Method Description org.springframework.http.ResponseEntity<File>
FileResource. createFile(@Valid File file)
POST /files : Create a new file.org.springframework.http.ResponseEntity<List<File>>
FileResource. getAllFiles(org.springframework.data.domain.Pageable pageable)
GET /files : get all the files.org.springframework.http.ResponseEntity<File>
FileResource. getFile(Long id)
GET /files/:id : get the "id" file.org.springframework.http.ResponseEntity<List<File>>
FileResource. getMyFiles(@Valid @NotNull String type)
Get all files owned by logged in user, plus all shared files.org.springframework.http.ResponseEntity<File>
FileResource. postFile(@Valid @NotNull String type, Boolean shared, Boolean overwrite, @Valid @NotNull org.springframework.web.multipart.MultipartFile part)
Upload a file.org.springframework.http.ResponseEntity<File>
FileResource. updateFile(@Valid File file)
PUT /files : Updates an existing file.Methods in org.powertac.visualizer.web.rest with parameters of type File Modifier and Type Method Description org.springframework.http.ResponseEntity<File>
FileResource. createFile(@Valid File file)
POST /files : Create a new file.org.springframework.http.ResponseEntity<Void>
GameResource. replayGameInternal(@Valid File file)
org.springframework.http.ResponseEntity<File>
FileResource. updateFile(@Valid File file)
PUT /files : Updates an existing file.
-