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

org.entur.jwt.spring.TenantProperties Maven / Gradle / Ivy

package org.entur.jwt.spring;

import java.util.Map;

public class TenantProperties {

    private String id;
    private String issuer;
    private Map properties;

    public TenantProperties(String id, String issuer, Map properties) {
        super();
        this.id = id;
        this.issuer = issuer;
        this.properties = properties;
    }

    public String getId() {
        return id;
    }

    public String getIssuer() {
        return issuer;
    }

    public Map getProperties() {
        return properties;
    }
    
    public Object getProperty(String key) {
        return properties.get(key);
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy