All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cryptomator.frontend.webdav.WebDavServerComponent Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
/*******************************************************************************
 * 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