net.ravendb.client.documents.operations.backups.LocalSettings Maven / Gradle / Ivy
package net.ravendb.client.documents.operations.backups;
public class LocalSettings extends BackupSettings {
private String folderPath;
public String getFolderPath() {
return folderPath;
}
public void setFolderPath(String folderPath) {
this.folderPath = folderPath;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy