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

br.com.anteros.nextcloud.api.utils.WebdavInputStream Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package br.com.anteros.nextcloud.api.utils;

import com.github.sardine.Sardine;
import java.io.IOException;
import java.io.InputStream;
import org.apache.commons.io.input.ProxyInputStream;

public class WebdavInputStream extends ProxyInputStream {

	private final Sardine sardine; // Sardine instance used

	public WebdavInputStream(Sardine sardine, InputStream in) {
		super(in);
		this.sardine = sardine;
	}

	@Override
	public void close() throws IOException {
		super.close();
		sardine.shutdown();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy