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 java.time.OffsetDateTime;

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

private static final long serialVersionUID = -7788619177798333712L;

private String branch;
private String component;
private String number;
private OffsetDateTime entryDate;
private OffsetDateTime separationDate;
private String dischargeType;

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

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

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

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

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

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

/**
* The getter for entry date.
*
* @return the entry date
*/
public OffsetDateTime getEntryDate() {
return entryDate;
}

/**
* The setter for entry date.
*
* @param entryDate the entry date to set
*/
public void setEntryDate(OffsetDateTime entryDate) {
this.entryDate = entryDate;
}

/**
* The getter for separation date.
*
* @return the separation date
*/
public OffsetDateTime getSeparationDate() {
return separationDate;
}

/**
* The setter for separation date.
*
* @param separationDate the separation date to set
*/
public void setSeparationDate(OffsetDateTime separationDate) {
this.separationDate = separationDate;
}

/**
* The getter for discharge type.
*
* @return the discharge type
*/
public String getDischargeType() {
return dischargeType;
}

/**
* The setter for discharge type.
*
* @param dischargeType the discharge type to set
*/
public void setDischargeType(String dischargeType) {
this.dischargeType = dischargeType;
}
}