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

no.ks.fiks.maskinporten.MaskinportenProperties Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy