no.ks.fiks.dokumentlager.klient.model.Soketreff Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dokumentlager-klient Show documentation
Show all versions of dokumentlager-klient Show documentation
Klient for opplasting, sletting og nedlasting av dokumenter fra Fiks Dokumentlager
The newest version!
package no.ks.fiks.dokumentlager.klient.model;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import lombok.Value;
import java.time.OffsetDateTime;
import java.util.UUID;
@Value
@JsonDeserialize()
public class Soketreff {
UUID id;
String dokumentnavn;
Long kryptertStorrelse;
Long ukryptertStorrelse;
OffsetDateTime opprettet;
String mimetype;
Boolean slettet;
UUID korrelasjonsid;
}