org.cryptomator.frontend.webdav.WebDavServerHandle 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.
package org.cryptomator.frontend.webdav;
import java.io.IOException;
public interface WebDavServerHandle extends AutoCloseable {
WebDavServer server();
@Override
void close() throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy