Address.java
/*
* Copyright 2018-2020 the original author or 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 org.bremersee.common.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
/**
* Address data.
*
* @author Christian Bremer
*/
@Schema(description = "Address data.")
@JsonIgnoreProperties(ignoreUnknown = true)
@EqualsAndHashCode
@ToString
@NoArgsConstructor
public class Address implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("streetNumber")
private String streetNumber;
@JsonProperty("street")
private String street;
@JsonProperty("postalCode")
private String postalCode;
@JsonProperty("city")
private String city;
@JsonProperty("suburb")
private String suburb;
@JsonProperty("state")
private String state;
@JsonProperty("country")
private String country;
@JsonProperty("countryCode")
private TwoLetterCountryCode countryCode;
@JsonProperty("formattedAddress")
private String formattedAddress;
/**
* Instantiates a new address.
*
* @param streetNumber the street number
* @param street the street
* @param postalCode the postal code
* @param city the city
* @param suburb the suburb
* @param state the state
* @param country the country
* @param countryCode the country code
* @param formattedAddress the formatted address
*/
@Builder(toBuilder = true)
@SuppressWarnings("unused")
public Address(String streetNumber, String street, String postalCode, String city,
String suburb, String state, String country,
TwoLetterCountryCode countryCode, String formattedAddress) {
this.streetNumber = streetNumber;
this.street = street;
this.postalCode = postalCode;
this.city = city;
this.suburb = suburb;
this.state = state;
this.country = country;
this.countryCode = countryCode;
this.formattedAddress = formattedAddress;
}
/**
* The street number.
*
* @return streetNumber street number
*/
@Schema(description = "The street number.", example = "100")
public String getStreetNumber() {
return streetNumber;
}
/**
* Sets street number.
*
* @param streetNumber the street number
*/
public void setStreetNumber(String streetNumber) {
this.streetNumber = streetNumber;
}
/**
* The street name.
*
* @return street street
*/
@Schema(description = "The street name.", example = "Kurfürstendamm")
public String getStreet() {
return street;
}
/**
* Sets street.
*
* @param street the street
*/
public void setStreet(String street) {
this.street = street;
}
/**
* The postal code.
*
* @return postalCode postal code
*/
@Schema(description = "The postal code.", example = "10709")
public String getPostalCode() {
return postalCode;
}
/**
* Sets postal code.
*
* @param postalCode the postal code
*/
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
/**
* The city name.
*
* @return city city
*/
@Schema(description = "The city name.", example = "Berlin")
public String getCity() {
return city;
}
/**
* Sets city.
*
* @param city the city
*/
public void setCity(String city) {
this.city = city;
}
/**
* The suburb name.
*
* @return suburb suburb
*/
@Schema(description = "The suburb name.")
public String getSuburb() {
return suburb;
}
/**
* Sets suburb.
*
* @param suburb the suburb
*/
public void setSuburb(String suburb) {
this.suburb = suburb;
}
/**
* The state name.
*
* @return state state
*/
@Schema(description = "The state name.")
public String getState() {
return state;
}
/**
* Sets state.
*
* @param state the state
*/
public void setState(String state) {
this.state = state;
}
/**
* The country name.
*
* @return country country
*/
@Schema(description = "The country name.", example = "Germany")
public String getCountry() {
return country;
}
/**
* Sets country.
*
* @param country the country
*/
public void setCountry(String country) {
this.country = country;
}
/**
* The country code.
*
* @return countryCode country code
*/
@Schema(description = "The country code.", example = "DE")
public TwoLetterCountryCode getCountryCode() {
return countryCode;
}
/**
* Sets country code.
*
* @param countryCode the country code
*/
public void setCountryCode(TwoLetterCountryCode countryCode) {
this.countryCode = countryCode;
}
/**
* The street number.
*
* @return formattedAddress formatted address
*/
@Schema(description = "The street number.", example = "Kurfürstendamm 100, 10709 Berlin")
public String getFormattedAddress() {
return formattedAddress;
}
/**
* Sets formatted address.
*
* @param formattedAddress the formatted address
*/
public void setFormattedAddress(String formattedAddress) {
this.formattedAddress = formattedAddress;
}
}