Interface TapeReadWriteService
-
- All Known Implementing Classes:
DdTapeLibraryService
public interface TapeReadWriteService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessExecutorgetExecutor()java.lang.StringgetInputDirectory()java.lang.StringgetOutputDirectory()TapeResponsereadFromTape(java.lang.String outputPath)TapeResponsewriteToTape(java.lang.String inputPath)
-
-
-
Method Detail
-
writeToTape
TapeResponse writeToTape(java.lang.String inputPath)
- Parameters:
inputPath- mini-path to file from workingDir- Returns:
- TapeResponse
-
readFromTape
TapeResponse readFromTape(java.lang.String outputPath)
- Parameters:
outputPath- in case dd implementation, outputPath is mini-path to file from workingDir. In case of tar implmentation, outputPath is the file inside tar to extrac- Returns:
- TapeResponse
-
getExecutor
ProcessExecutor getExecutor()
-
getOutputDirectory
java.lang.String getOutputDirectory()
-
getInputDirectory
java.lang.String getInputDirectory()
-
-