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

no.difi.meldingsutveksling.DownloadRequest Maven / Gradle / Ivy

The newest version!
package no.difi.meldingsutveksling;

public class DownloadRequest {
    final String fileReference;
    final String reciever;

    /**
     * @param fileReference the file reference as returned by available files Altinn service
     * @param reciever the message receiver party number
     */
    public DownloadRequest(String fileReference, String reciever) {
        this.fileReference = fileReference;
        this.reciever = reciever;
    }

    /**
     * @return the file reference as returned by available files Altinn service
     */
    public String getFileReference() {
        return fileReference;
    }

    /**
     * @return the message receiver party number
     */
    public String getReciever() {
        return reciever;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy