Package be.recipe.services.patient
Class ContactDetails
- java.lang.Object
-
- be.recipe.services.patient.ContactDetails
-
public class ContactDetails extends Object
Java class for ContactDetails complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ContactDetails"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="emailAddress" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="telephoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="contactPreference" type="{http:/services.recipe.be/core}contactPreference" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ContactPreferencecontactPreferenceprotected StringemailAddressprotected StringtelephoneNumber
-
Constructor Summary
Constructors Constructor Description ContactDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContactPreferencegetContactPreference()Gets the value of the contactPreference property.StringgetEmailAddress()Gets the value of the emailAddress property.StringgetTelephoneNumber()Gets the value of the telephoneNumber property.voidsetContactPreference(ContactPreference value)Sets the value of the contactPreference property.voidsetEmailAddress(String value)Sets the value of the emailAddress property.voidsetTelephoneNumber(String value)Sets the value of the telephoneNumber property.
-
-
-
Field Detail
-
emailAddress
protected String emailAddress
-
telephoneNumber
protected String telephoneNumber
-
contactPreference
protected ContactPreference contactPreference
-
-
Method Detail
-
getEmailAddress
public String getEmailAddress()
Gets the value of the emailAddress property.- Returns:
- possible object is
String
-
setEmailAddress
public void setEmailAddress(String value)
Sets the value of the emailAddress property.- Parameters:
value- allowed object isString
-
getTelephoneNumber
public String getTelephoneNumber()
Gets the value of the telephoneNumber property.- Returns:
- possible object is
String
-
setTelephoneNumber
public void setTelephoneNumber(String value)
Sets the value of the telephoneNumber property.- Parameters:
value- allowed object isString
-
getContactPreference
public ContactPreference getContactPreference()
Gets the value of the contactPreference property.- Returns:
- possible object is
ContactPreference
-
setContactPreference
public void setContactPreference(ContactPreference value)
Sets the value of the contactPreference property.- Parameters:
value- allowed object isContactPreference
-
-