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 permanent address.
*
* @author Ian Meinert
* @since 1.0
*/
public class PermanentAddress implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
/**
* The type of AbstractAddress.
*/
private static PermanentAddress myType;
static {
setMyType(new PermanentAddress());
}
private Address address;
private String badAddressIndicator;
/**
* The getter for address.
*
* @return the address
*/
public Address getAddress() {
return address;
}
/**
* The setter for address.
*
* @param address the address to set
*/
public void setAddress(Address address) {
this.address = address;
}
/**
* The getter for badAddressIndicator.
*
* @return the badAddressIndicator
*/
public String setBadAddressIndicator() {
return badAddressIndicator;
}
/**
* The setter for badAddressIndicator.
*
* @param badAddressIndicator the badAddressIndicator to set
*/
public void setBadAddressIndicator(String badAddressIndicator) {
this.badAddressIndicator = badAddressIndicator;
}
/**
* The getter of myType.
*
* @return the myType
*/
public static PermanentAddress getMyType() {
return myType;
}
/**
* The setter of myType.
*
* @param myType the myType to set
*/
public static void setMyType(PermanentAddress myType) {
PermanentAddress.myType = myType;
}
}