io.micronaut.security.oauth2.endpoint.token.response.Address Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-security-oauth2 Show documentation
Show all versions of micronaut-security-oauth2 Show documentation
Official Security Solution for Micronaut
/*
* Copyright 2017-2019 original authors
*
* 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 io.micronaut.security.oauth2.endpoint.token.response;
import javax.annotation.Nullable;
import java.util.Map;
/**
* Representation of an Address Claim which represents a physical mailing address.
*
* @see Address Claim
* @author Sergio del Amo
* @version 1.1.0
*/
public class Address {
public static final String COUNTRY = "country";
public static final String STREET_ADDRESS = "street_address";
public static final String LOCALITY = "locality";
public static final String POSTAL_CODE = "postal_code";
public static final String REGION = "region";
private String formatted;
private String streetAddress;
private String locality;
private String region;
private String postalCode;
private String country;
/**
* Default constructor
*/
public Address() {
}
/**
* @param map The address data
*/
public Address(Map map) {
if (map.containsKey(COUNTRY)) {
this.setCountry(map.get(COUNTRY).toString());
}
if (map.containsKey(STREET_ADDRESS)) {
this.setStreetAddress(map.get(STREET_ADDRESS).toString());
}
if (map.containsKey(LOCALITY)) {
this.setLocality(map.get(LOCALITY).toString());
}
if (map.containsKey(POSTAL_CODE)) {
this.setPostalCode(map.get(POSTAL_CODE).toString());
}
if (map.containsKey(REGION)) {
this.setRegion(map.get(REGION).toString());
}
}
/**
*
* @return Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information.
*/
@Nullable
public String getStreetAddress() {
return streetAddress;
}
/**
* Sets the full street address.
* @param streetAddress Street address.
*/
public void setStreetAddress(@Nullable String streetAddress) {
this.streetAddress = streetAddress;
}
/**
*
* @return City or locality component.
*/
@Nullable
public String getLocality() {
return locality;
}
/**
* Address's locality.
* @param locality Locality
*/
public void setLocality(@Nullable String locality) {
this.locality = locality;
}
/**
* @return State, province, prefecture or region component.
*/
@Nullable
public String getRegion() {
return region;
}
/**
* Address' region.
* @param region Region.
*/
public void setRegion(@Nullable String region) {
this.region = region;
}
/**
*
* @return Zip code or postal code component.
*/
@Nullable
public String getPostalCode() {
return postalCode;
}
/**
* Address's postal code.
* @param postalCode Postal code.
*/
public void setPostalCode(@Nullable String postalCode) {
this.postalCode = postalCode;
}
/**
*
* @return Country name component.
*/
@Nullable
public String getCountry() {
return country;
}
/**
* Address's country.
* @param country country.
*/
public void setCountry(@Nullable String country) {
this.country = country;
}
/**
*
* @return Full mailing address, formatted for display or use on a mailing label.
*/
@Nullable
public String getFormatted() {
return formatted;
}
/**
*
* @param formatted Full mailing address, formatted for display or use on a mailing label.
*/
public void setFormatted(@Nullable String formatted) {
this.formatted = formatted;
}
}