no.ks.fiks.maskinporten.MaskinportenProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fiks-maskinporten-spring-boot-client Show documentation
Show all versions of fiks-maskinporten-spring-boot-client Show documentation
fiks-maskinporten-spring-boot-client
package no.ks.fiks.maskinporten;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;
@Data
@ConfigurationProperties(prefix = "maskinporten")
@Validated
public class MaskinportenProperties {
private String audience;
private String tokenEndpoint;
private String issuer;
private int numberOfSecondsLeftBeforeExpire;
}