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

no.digipost.signature.client.asice.manifest.Manifest Maven / Gradle / Ivy

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

import no.digipost.signature.client.asice.ASiCEAttachable;

public class Manifest implements ASiCEAttachable {

    private byte[] xmlBytes;

    public Manifest(final byte[] xmlBytes) {
        this.xmlBytes = xmlBytes;
    }

    @Override
    public String getFileName() {
        return "manifest.xml";
    }

    @Override
    public byte[] getContent() {
        return xmlBytes;
    }

    @Override
    public String getMediaType() {
        return XML_MEDIATYPE;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy