org.wildfly.security.http.oidc.AddressClaimSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-elytron-http-oidc
Show all versions of wildfly-elytron-http-oidc
WildFly Security HTTP OIDC Mechanism Implementation
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2021 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.wildfly.security.http.oidc;
import java.util.Map;
import org.wildfly.common.Assert;
/**
* Representation of an address claim as per OpenID Connect Core 1.0.
*
* @author Farah Juma
*/
public class AddressClaimSet {
public static final String FORMATTED = "formatted";
public static final String STREET_ADDRESS = "street_address";
public static final String LOCALITY = "locality";
public static final String REGION = "region";
public static final String POSTAL_CODE = "postal_code";
public static final String COUNTRY = "country";
private final Map addressClaimSet;
/**
* Construct a new instance.
*
* @param addressClaimSet the address claim set for this instance (may not be {@code null})
*/
public AddressClaimSet(Map addressClaimSet) {
Assert.checkNotNullParam("addressClaimSet", addressClaimSet);
this.addressClaimSet = addressClaimSet;
}
public String getFormattedAddress() {
return addressClaimSet.get(FORMATTED);
}
public String getStreetAddress() {
return addressClaimSet.get(STREET_ADDRESS);
}
public String getLocality() {
return addressClaimSet.get(LOCALITY);
}
public String getRegion() {
return addressClaimSet.get(REGION);
}
public String getPostalCode() {
return addressClaimSet.get(POSTAL_CODE);
}
public String getCountry() {
return addressClaimSet.get(COUNTRY);
}
}