|
@@ -4,6 +4,7 @@ import com.google.common.base.Splitter;
|
|
|
import org.apache.commons.lang3.SystemUtils;
|
|
|
import org.cryptomator.common.Environment;
|
|
|
import org.cryptomator.common.settings.VaultSettings;
|
|
|
+import org.cryptomator.common.settings.VolumeImpl;
|
|
|
import org.cryptomator.cryptofs.CryptoFileSystem;
|
|
|
import org.cryptomator.frontend.fuse.mount.CommandFailedException;
|
|
|
import org.cryptomator.frontend.fuse.mount.EnvironmentVariables;
|
|
@@ -165,6 +166,11 @@ public class FuseVolume implements Volume {
|
|
|
return FuseVolume.isSupportedStatic();
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public VolumeImpl getImplementationType() {
|
|
|
+ return VolumeImpl.FUSE;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public Optional<Path> getMountPoint() {
|
|
|
return Optional.ofNullable(mountPoint);
|