no.digipost.api.representations.EbmsPullRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdp-api-commons Show documentation
Show all versions of sdp-api-commons Show documentation
Felles kode for API-relatert funksjonalitet
The newest version!
package no.digipost.api.representations;
import no.digipost.api.PMode;
public class EbmsPullRequest extends EbmsOutgoingMessage {
public EbmsPullRequest(final EbmsAktoer mottaker) {
this(mottaker, Prioritet.NORMAL);
}
public EbmsPullRequest(final EbmsAktoer mottaker, final String mpcId) {
this(mottaker, Prioritet.NORMAL, mpcId);
}
public EbmsPullRequest(final EbmsAktoer mottaker, final Prioritet prioritet) {
this(mottaker, prioritet, null);
}
public EbmsPullRequest(final EbmsAktoer mottaker, final Prioritet prioritet, final String mpcId) {
super(mottaker, newId(), null, PMode.Action.KVITTERING, prioritet, mpcId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy