Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.model.address;
import java.io.Serializable;
/**
* This class consists of properties representing a primary address.
*
* @author Ian Meinert
* @since 1.0
*/
public class Address implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
private String street;
private String streetLine2;
private String streetLine3;
private String city;
private String state;
private String zip;
private String county;
private String country;
/**
* The getter for the street.
*
* @return the street
*/
public String getStreet() {
return street;
}
/**
* The setter for the street.
*
* @param street the street to set
*/
public void setStreet(String street) {
this.street = street;
}
/**
* The getter for the streetLine2.
*
* @return the streetLine2
*/
public String getStreetLine2() {
return streetLine2;
}
/**
* The setter for the streetLine2.
*
* @param streetLine2 the streetLine2 to set
*/
public void setStreetLine2(String streetLine2) {
this.streetLine2 = streetLine2;
}
/**
* The getter for the streetLine3.
*
* @return the streetLine3
*/
public String getStreetLine3() {
return streetLine3;
}
/**
* The setter for the streetLine3.
*
* @param streetLine3 the streetLine3 to set
*/
public void setStreetLine3(String streetLine3) {
this.streetLine3 = streetLine3;
}
/**
* The getter for the city.
*
* @return the city
*/
public String getCity() {
return city;
}
/**
* The setter for the city.
*
* @param city the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* The getter for the state.
*
* @return the state
*/
public String getState() {
return state;
}
/**
* The setter for the state.
*
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* The getter for the zip.
*
* @return the zip
*/
public String getZip() {
return zip;
}
/**
* The setter for the zip.
*
* @param zip the zip to set
*/
public void setZip(String zip) {
this.zip = zip;
}
/**
* The getter for the county.
*
* @return the county
*/
public String getCounty() {
return county;
}
/**
* The setter for the county.
*
* @param county the county to set
*/
public void setCounty(String county) {
this.county = county;
}
/**
* The getter for the country.
*
* @return the country
*/
public String getCountry() {
return country;
}
/**
* The setter for the country.
*
* @param country the country to set
*/
public void setCountry(String country) {
this.country = country;
}
}