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

no.ks.fiks.dokumentlager.klient.model.DokumentlagerResponse Maven / Gradle / Ivy

Go to download

Klient for opplasting, sletting og nedlasting av dokumenter fra Fiks Dokumentlager

The newest version!
package no.ks.fiks.dokumentlager.klient.model;

import lombok.Builder;

import java.util.Map;
import java.util.Optional;

@Builder
public class DokumentlagerResponse {
    private final T result;
    private final int httpStatus;
    private final Map httpHeaders;

    public T getResult() {
        return result;
    }

    public int getHttpStatus() {
        return httpStatus;
    }

    public Optional getHeader(String header) {
        return Optional.ofNullable(httpHeaders.get(header));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy