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

no.difi.sdp.client2.asice.ArchivedASiCE Maven / Gradle / Ivy

There is a newer version: 7.0.0-RC2
Show newest version
package no.difi.sdp.client2.asice;

public class ArchivedASiCE {

    private final byte[] bytes;
    private long unzippedContentBytesCount;

    ArchivedASiCE(byte[] bytes, long unzippedContentBytesCount) {
        this.bytes = bytes;
        this.unzippedContentBytesCount = unzippedContentBytesCount;
    }

    public byte[] getBytes() {
        return bytes;
    }

    public long getUnzippedContentBytesCount() { return unzippedContentBytesCount; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy