no.difi.asic.InputStreamWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-asic Show documentation
Show all versions of commons-asic Show documentation
Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.
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