2016-11-25 15:42:29 +01:00
|
|
|
package org.gcube.smartgears.persistence;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
2022-03-17 17:17:15 +01:00
|
|
|
public interface PersistenceWriter {
|
|
|
|
|
2016-11-25 15:42:29 +01:00
|
|
|
File file(String path);
|
|
|
|
|
|
|
|
File writefile(String path);
|
2022-03-17 17:17:15 +01:00
|
|
|
|
|
|
|
long getFreeSpace();
|
2022-06-10 18:25:19 +02:00
|
|
|
|
|
|
|
String getLocation();
|
2016-11-25 15:42:29 +01:00
|
|
|
|
|
|
|
}
|