mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-12-24 19:01:17 -08:00
12 lines
412 B
Java
12 lines
412 B
Java
package com.zerotier.one;
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.FileOutputStream;
|
|
import java.io.IOException;
|
|
|
|
public interface DataStoreFileProvider {
|
|
FileInputStream getInputFileStream(String name) throws FileNotFoundException;
|
|
FileOutputStream getOutputFileStream(String name) throws FileNotFoundException;
|
|
void deleteFile(String name) throws IOException;
|
|
}
|