Interface ExportFileSupplier
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
FileExporter,ZipArchiveExporter
public interface ExportFileSupplier extends java.lang.AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.nio.file.PathgetTargetPath()java.io.OutputStreamnewFileOutput(java.lang.String fileName)voidpreValidate()
-
-
-
Method Detail
-
getTargetPath
@Nonnull @Nonnull java.nio.file.Path getTargetPath()
-
preValidate
void preValidate() throws java.io.IOException- Throws:
java.io.IOException
-
newFileOutput
@Nonnull @Nonnull java.io.OutputStream newFileOutput(@Nonnull @Nonnull java.lang.String fileName) throws java.io.IOException- Throws:
java.io.IOException
-
-