no.digipost.api.representations.EbmsMessage 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 java.util.UUID;
public abstract class EbmsMessage {
public final String messageId;
public final String refToMessageId;
public EbmsMessage(final String messageId, final String refToMessageId) {
this.messageId = messageId;
this.refToMessageId = refToMessageId;
}
public static String newId() {
return UUID.randomUUID().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy