Interface ExecutionFileManagerService
-
- All Superinterfaces:
AppService
- All Known Subinterfaces:
AsyncExecutionFileLoaderService,ExecutionFileLoaderService
public interface ExecutionFileManagerService extends AppService
methods for local file paths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.FilegetLocalExecutionFileForType(ExecutionReference execution, java.lang.String filetype)java.io.FilegetLocalExecutionFileForType(ExecutionReference execution, java.lang.String filetype, boolean partial)java.io.FilegetLocalLogsDir()
-
-
-
Method Detail
-
getLocalLogsDir
java.io.File getLocalLogsDir()
- Returns:
- local dir to store logs
-
getLocalExecutionFileForType
java.io.File getLocalExecutionFileForType(ExecutionReference execution, java.lang.String filetype)
- Parameters:
execution- executionfiletype- file type string- Returns:
- local file path for given file type for the execution
-
getLocalExecutionFileForType
java.io.File getLocalExecutionFileForType(ExecutionReference execution, java.lang.String filetype, boolean partial)
- Parameters:
execution- executionfiletype- file type stringpartial- true for partial file- Returns:
- local file for given partial file type for the execution
-
-