public class Participant
extends java.lang.Object
This class has the following attributes:
1. participantName (String)
2. participantFamily (String)
3. participantSuffix (EffectiveDateTime)
4. participantPrefix (String)
5. participantAddress (List<Address>)
6. participantContact (List<Contact>)
7. isNOK (boolean)
8. isGaurdian (boolean)
9. isEmergencyContactPresent (boolean)
10. isCareGiverPresent (boolean)
This class provides accessors and mutators for the elements mentioned above.
| Constructor and Description |
|---|
Participant() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Address> |
getParticipantAddress()
Returns the list od the Participant Address.
|
java.util.List<Contact> |
getParticipantContact()
Returns the list of Participant Contact information.
|
java.lang.String |
getParticipantFamily()
Returns the Participant Family Name.
|
java.lang.String |
getParticipantName()
Returns the Participant Name.
|
java.lang.String |
getParticipantOrganisation()
Returns the Participant Organization.
|
java.lang.String |
getParticipantPrefix()
Returns the Participant Name Prefix.
|
java.lang.String |
getParticipantRelation()
Sets the Participant Relation.
|
java.lang.String |
getParticipantSuffix()
Returns the Participant Name Suffix.
|
boolean |
isCareGiverPresent()
Returns the flag value( true or false) of Care Giver Present.
|
boolean |
isEmergencyContactPresent()
Returns the flag value( true or false) of Emergency Contact Present.
|
boolean |
isGaurdian()
Returns the flag value( true or false) of Gaurdian.
|
boolean |
isNOK()
Returns the flag value(true or false) of next of kin.
|
void |
setCareGiverPresent(boolean isCareGiverPresent)
Sets the flag value( true or false) of Care Giver Present.
|
void |
setEmergencyContactPresent(boolean isEmergencyContactPresent)
Sets the flag value( true or false) of Emergency Contact Present.
|
void |
setGaurdian(boolean isGaurdian)
Sets the flag value( true or false) of Gaurdian.
|
void |
setNOK(boolean isNOK)
Sets the flag value(true or false) of next of kin.
|
void |
setParticipantFamily(java.lang.String participantFamily)
Sets the Participant Family Name.
|
void |
setParticipantName(java.lang.String participantName)
Sets the Participant Name.
|
void |
setParticipantOrganisation(java.lang.String participantOrganisation)
Sets the Participant Organization.
|
void |
setParticipantPrefix(java.lang.String participantPrefix)
Sets the Participant Name Prefix.
|
void |
setParticipantRelation(java.lang.String participantRelation)
Sets the Participant Relation.
|
void |
setParticipantSuffix(java.lang.String participantSuffix)
Sets the Participant Name Suffix.
|
public java.lang.String getParticipantName()
public void setParticipantName(java.lang.String participantName)
participantName - Specifies the Participant Name.public java.lang.String getParticipantFamily()
public void setParticipantFamily(java.lang.String participantFamily)
participantFamily - Specifies the Participant Family Name.public java.lang.String getParticipantSuffix()
public void setParticipantSuffix(java.lang.String participantSuffix)
participantSuffix - Specifies the Participant Name Suffix.public java.lang.String getParticipantPrefix()
public void setParticipantPrefix(java.lang.String participantPrefix)
participantPrefix - Specifies the Participant Name Prefix.public java.util.List<Address> getParticipantAddress()
public java.util.List<Contact> getParticipantContact()
public java.lang.String getParticipantOrganisation()
public void setParticipantOrganisation(java.lang.String participantOrganisation)
participantOrganisation - Specifies the Participant Organization.public boolean isNOK()
public void setNOK(boolean isNOK)
isNOK - Specifies the value(true or false) of next of kin.public boolean isGaurdian()
public void setGaurdian(boolean isGaurdian)
isGaurdian - Specifies the flag value( true or false) of Gaurdian.public boolean isEmergencyContactPresent()
public void setEmergencyContactPresent(boolean isEmergencyContactPresent)
isEmergencyContactPresent - Specifies the flag value( true or false) of Emergency Contact Present.public java.lang.String getParticipantRelation()
public void setParticipantRelation(java.lang.String participantRelation)
participantRelation - the participantRelation to setpublic boolean isCareGiverPresent()
public void setCareGiverPresent(boolean isCareGiverPresent)
isCareGiverPresent - Specifies the flag value( true or false) of Care Giver Present.