
de.tsl2.nano.d8portal.IRespository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.d8portal Show documentation
Show all versions of tsl2.nano.d8portal Show documentation
up-/download private encrypted documents with metainformations (organisation -> clients)
The newest version!
package de.tsl2.nano.d8portal;
import java.io.File;
import java.util.List;
/**
* rudimental functions to manage a repository (like git)
*/
public interface IRespository {
File getBaseDir();
void create();
List lsFiles();
List newFiles();
void addFile(String filename);
void removeFile(String filename);
void refresh();
void publish();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy