|
@@ -27,6 +27,7 @@ public class WebDavVolume implements Volume {
|
|
|
private WebDavServer server;
|
|
|
private WebDavServletController servlet;
|
|
|
private Mounter.Mount mount;
|
|
|
+ private Path mountPoint;
|
|
|
|
|
|
@Inject
|
|
|
public WebDavVolume(Provider<WebDavServer> serverProvider, VaultSettings vaultSettings, Settings settings) {
|
|
@@ -97,7 +98,7 @@ public class WebDavVolume implements Volume {
|
|
|
|
|
|
@Override
|
|
|
public Optional<Path> getMountPoint() {
|
|
|
- return Optional.empty(); //TODO
|
|
|
+ return Optional.ofNullable(mountPoint); //TODO
|
|
|
}
|
|
|
|
|
|
@Override
|