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

de.bund.bva.isyfact.security.config.JWTConfigurationProperties Maven / Gradle / Ivy

Go to download

Überarbeitete Komponente für die Autorisierung von Benutzern in IsyFact-Anwendungen.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy