allow user to specify whether to use dav:// or webdav:// scheme for Linux GVFS mounts. Fixes #307

This commit is contained in:
Sebastian Stenzel
2016-07-25 10:08:21 +02:00
parent a8ad335aed
commit f071efe1b9
21 changed files with 245 additions and 154 deletions
@@ -0,0 +1,21 @@
/*******************************************************************************
* Copyright (c) 2016 Sebastian Stenzel and others.
* This file is licensed under the terms of the MIT license.
* See the LICENSE.txt file for more info.
*
* Contributors:
* Sebastian Stenzel - initial API and implementation
*******************************************************************************/
package org.cryptomator.frontend.webdav;
import javax.inject.Singleton;
import dagger.Component;
@Singleton
@Component(modules = {WebDavModule.class})
public interface WebDavComponent {
WebDavServer server();
}