no.ks.fiks.dokumentlager.klient.HttpConfiguration 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;
import lombok.Builder;
import lombok.Value;
import java.time.Duration;
@Value
@Builder
public class HttpConfiguration {
@Builder.Default
Duration uploadTimeout = Duration.ofHours(1);
@Builder.Default
Duration downloadTimeout = Duration.ofHours(1);
@Builder.Default
Duration idleTimeout = Duration.ofMinutes(1);
}