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

com.github.sardine.impl.io.ContentLengthInputStream Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.github.sardine.impl.io;

import java.io.FilterInputStream;
import java.io.InputStream;

/**
 * @version $Id:$
 */
public class ContentLengthInputStream extends FilterInputStream {

    private Long length;

    public ContentLengthInputStream(final InputStream in, final Long length) {
        super(in);
        this.length = length;
    }

    public Long getLength() {
        return length;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy