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

no.difi.asic.InputStreamWrapper Maven / Gradle / Ivy

Go to download

Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.

There is a newer version: 0.12.0
Show newest version
package no.difi.asic;

import java.io.IOException;
import java.io.InputStream;

class InputStreamWrapper extends InputStream {

    private InputStream source;

    public InputStreamWrapper(InputStream source) {
        this.source = source;
    }

    @Override
    public int read() throws IOException {
        return source.read();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy