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

no.digipost.signature.client.core.ResponseInputStream Maven / Gradle / Ivy

package no.digipost.signature.client.core;

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

public class ResponseInputStream extends FilterInputStream {

    private final long contentLength;

    public ResponseInputStream(InputStream in, long contentLength) {
        super(in);
        this.contentLength = contentLength;
    }

    public long getContentLength() {
        return contentLength;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy