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.patientdemographics;

import java.io.Serializable;

import gov.va.med.pbm.ampl.model.address.Address;
import gov.va.med.pbm.ampl.model.Contact;

/**
* This class consists of properties representing a contact person of the patient.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class Person implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String name;
private String relationship;
private Contact contactDetails;
private Address address;

/**
* The getter for name.
*
* @return the name
*/
public String getName() {
return name;
}

/**
* The setter for name.
*
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}

/**
* The getter for relationship.
*
* @return the relationship
*/
public String getRelationship() {
return relationship;
}

/**
* The setter for relationship.
*
* @param relationship the relationship to set
*/
public void setRelationship(String relationship) {
this.relationship = relationship;
}

/**
* The getter for contactDetails.
*
* @return the contactDetails
*/
public Contact getContactDetails() {
return contactDetails;
}

/**
* The setter for contactDetails.
*
* @param contactDetails the contact details to set
*/
public void setContactDetails(Contact contactDetails) {
this.contactDetails = contactDetails;
}

/**
* 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;
}
}