de.bund.bva.isyfact.security.config.JWTConfigurationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isy-security Show documentation
Show all versions of isy-security Show documentation
Überarbeitete Komponente für die Autorisierung von Benutzern in IsyFact-Anwendungen.
package de.bund.bva.isyfact.security.config;
import java.util.Map;
import org.springframework.validation.annotation.Validated;
public class JWTConfigurationProperties {
/** The tenants. */
private Map tenants;
public Map getTenants() {
return tenants;
}
public void setTenants(Map tenants) {
this.tenants = tenants;
}
@Validated
public static class JwtServerProperties {
/** The issuer URI. */
private String issuerUri;
/** The JWK set URI. */
private String jwkSetUri;
public String getIssuerUri() {
return issuerUri;
}
public void setIssuerUri(String issuerUri) {
this.issuerUri = issuerUri;
}
public String getJwkSetUri() {
return jwkSetUri;
}
public void setJwkSetUri(String jwkSetUri) {
this.jwkSetUri = jwkSetUri;
}
}
}