org.cryptomator.frontend.webdav.WebDavServerComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdav-nio-adapter Show documentation
Show all versions of webdav-nio-adapter Show documentation
Embedded Jetty serving a WebDAV servlet to access resources at a given NIO path.
/*******************************************************************************
* Copyright (c) 2016 Sebastian Stenzel and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the accompanying LICENSE.txt.
*
* Contributors:
* Sebastian Stenzel - initial API and implementation
*******************************************************************************/
package org.cryptomator.frontend.webdav;
import javax.inject.Singleton;
import org.cryptomator.frontend.webdav.servlet.WebDavServletComponent;
import org.cryptomator.frontend.webdav.servlet.WebDavServletModule;
import dagger.Component;
@Singleton
@Component(modules = {WebDavServerModule.class})
interface WebDavServerComponent {
WebDavServer server();
WebDavServletComponent newWebDavServletComponent(WebDavServletModule webDavServletModule);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy