public class Immunizations
extends java.lang.Object
This class has the following attributes:
1. Vaccine (String)
2. date (EffectiveDateTime)
3. Status (String)
4. moodOfVaccine (String)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
Immunizations()
Default constructor of Immunizations.
|
| Modifier and Type | Method and Description |
|---|---|
EffectiveDateTime |
getDate()
Returns the Date of Vaccination.
|
java.lang.String |
getMoodOfVaccine()
Returns the Mood Of Vaccine.
|
java.lang.String |
getStatus()
Returns the Status of Vaccination.
|
java.lang.String |
getVaccine()
Returns the Vaccine.
|
void |
setDate(EffectiveDateTime date)
Sets the Date of Vaccination.
|
void |
setMoodOfVaccine(java.lang.String moodOfVaccine)
Sets the Mood Of Vaccine.
|
void |
setStatus(java.lang.String status)
Sets the Status of Vaccination.
|
void |
setVaccine(java.lang.String vaccine)
Sets the Vaccine.
|
public java.lang.String getVaccine()
public void setVaccine(java.lang.String vaccine)
vaccine - Specifies the Vaccine.public EffectiveDateTime getDate()
public void setDate(EffectiveDateTime date)
date - Specifies the Date of Vaccination.public java.lang.String getStatus()
public void setStatus(java.lang.String status)
status - Specifies the Status of Vaccination.public java.lang.String getMoodOfVaccine()
public void setMoodOfVaccine(java.lang.String moodOfVaccine)
moodOfVaccine - Specifies the Mood Of Vaccine.