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

no.digipost.signature.client.asice.DocumentBundle Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package no.digipost.signature.client.asice;

import java.io.ByteArrayInputStream;
import java.io.InputStream;

public class DocumentBundle {

    private final byte[] bytes;

    public DocumentBundle(final byte[] bytes) {
        this.bytes = bytes;
    }

    public InputStream getInputStream() {
        return new ByteArrayInputStream(bytes);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy