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

no.ks.fiks.io.commons.MottattMeldingMetadata Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package no.ks.fiks.io.commons;

import lombok.Builder;
import lombok.Data;
import lombok.NonNull;

import java.util.Map;
import java.util.UUID;

@Data
@Builder
public class MottattMeldingMetadata {
    @NonNull private UUID meldingId;
    @NonNull private String meldingType;
    @NonNull private UUID avsenderKontoId;
    @NonNull private UUID mottakerKontoId;
    private Long ttl;
    @NonNull private Long deliveryTag;
    private UUID svarPaMelding;
    private Map headere;
    @Builder.Default
    private boolean resendt = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy