com.moyosoft.exchange.contact
Interface ExchangeContact

All Superinterfaces:
ExchangeItem

public interface ExchangeContact
extends ExchangeItem

Represents a contact item stored in an Exchange folder.

A new contact can be created with the method ExchangeFolder.createContact(). To save the new contact to the folder, call the method save().

This class provides getter and setter methods to access or modify the contact's properties.

Example code that displays contacts in the default contact folder:

Exchange exchange = new Exchange("hostname", "username", "password");

ExchangeFolder folder = exchange.getContactsFolder();
ItemsCollection items = folder.getItems();

System.out.println("Contacts count: " + items.getCount());

for(ExchangeItem item : items)
{
  ExchangeContact contact = (ExchangeContact) item;
  System.out.println(contact.getDisplayName());
}

See Also:
ExchangeFolder.createContact(), ExchangeItem.save()

Method Summary
 java.lang.String getAddressBusinessCity()
           
 java.lang.String getAddressBusinessCountryOrRegion()
           
 java.lang.String getAddressBusinessPostalCode()
           
 java.lang.String getAddressBusinessState()
           
 java.lang.String getAddressBusinessStreet()
           
 java.lang.String getAddressHomeCity()
           
 java.lang.String getAddressHomeCountryOrRegion()
           
 java.lang.String getAddressHomePostalCode()
           
 java.lang.String getAddressHomeState()
           
 java.lang.String getAddressHomeStreet()
           
 java.lang.String getAddressOtherCity()
           
 java.lang.String getAddressOtherCountryOrRegion()
           
 java.lang.String getAddressOtherPostalCode()
           
 java.lang.String getAddressOtherState()
           
 java.lang.String getAddressOtherStreet()
           
 java.lang.String getAssistantName()
           
 java.util.Date getBirthday()
           
 java.lang.String getBusinessHomePage()
           
 java.util.List<java.lang.String> getChildren()
           
 java.util.List<java.lang.String> getCompanies()
           
 java.lang.String getCompanyName()
           
 java.lang.String getDepartment()
           
 java.lang.String getDisplayName()
           
 java.lang.String getEmailAddress1()
           
 java.lang.String getEmailAddress1DisplayAs()
           
 java.lang.String getEmailAddress1Type()
           
 java.lang.String getEmailAddress2()
           
 java.lang.String getEmailAddress2DisplayAs()
           
 java.lang.String getEmailAddress2Type()
           
 java.lang.String getEmailAddress3()
           
 java.lang.String getEmailAddress3DisplayAs()
           
 java.lang.String getEmailAddress3Type()
           
 java.lang.String getFileAs()
           
 FileAsMapping getFileAsMapping()
           
 java.lang.String getFirstName()
           
 java.lang.String getFullName()
           
 java.lang.String getImAddress1()
           
 java.lang.String getImAddress2()
           
 java.lang.String getImAddress3()
           
 java.lang.String getInitials()
           
 java.lang.String getJobTitle()
           
 java.lang.String getLastName()
           
 java.lang.String getManager()
           
 java.lang.String getMiddleName()
           
 java.lang.String getMileage()
           
 java.lang.String getNameSuffix()
           
 java.lang.String getNickname()
           
 java.lang.String getOfficeLocation()
           
 java.lang.String getPhoneNumberAssistantPhone()
           
 java.lang.String getPhoneNumberBusinessFax()
           
 java.lang.String getPhoneNumberBusinessPhone()
           
 java.lang.String getPhoneNumberBusinessPhone2()
           
 java.lang.String getPhoneNumberCallback()
           
 java.lang.String getPhoneNumberCarPhone()
           
 java.lang.String getPhoneNumberCompanyMainPhone()
           
 java.lang.String getPhoneNumberHomeFax()
           
 java.lang.String getPhoneNumberHomePhone()
           
 java.lang.String getPhoneNumberHomePhone2()
           
 java.lang.String getPhoneNumberIsdn()
           
 java.lang.String getPhoneNumberMobilePhone()
           
 java.lang.String getPhoneNumberOtherFax()
           
 java.lang.String getPhoneNumberOtherTelephone()
           
 java.lang.String getPhoneNumberPager()
           
 java.lang.String getPhoneNumberPrimaryPhone()
           
 java.lang.String getPhoneNumberRadioPhone()
           
 java.lang.String getPhoneNumberTelex()
           
 java.lang.String getPhoneNumberTtyTddPhone()
           
 java.lang.String getProfession()
           
 java.lang.String getSpouseName()
           
 java.lang.String getTitle()
           
 java.util.Date getWeddingAnniversary()
           
 java.lang.String getYomiFirstName()
           
 java.lang.String getYomiLastName()
           
 boolean isPostalAddressBusiness()
           
 boolean isPostalAddressHome()
           
 boolean isPostalAddressOther()
           
 void setAddressBusiness(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode)
           
 void setAddressBusinessCity(java.lang.String value)
           
 void setAddressBusinessCountryOrRegion(java.lang.String value)
           
 void setAddressBusinessPostalCode(java.lang.String value)
           
 void setAddressBusinessState(java.lang.String value)
           
 void setAddressBusinessStreet(java.lang.String value)
           
 void setAddressHome(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode)
           
 void setAddressHomeCity(java.lang.String value)
           
 void setAddressHomeCountryOrRegion(java.lang.String value)
           
 void setAddressHomePostalCode(java.lang.String value)
           
 void setAddressHomeState(java.lang.String value)
           
 void setAddressHomeStreet(java.lang.String value)
           
 void setAddressOther(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode)
           
 void setAddressOtherCity(java.lang.String value)
           
 void setAddressOtherCountryOrRegion(java.lang.String value)
           
 void setAddressOtherPostalCode(java.lang.String value)
           
 void setAddressOtherState(java.lang.String value)
           
 void setAddressOtherStreet(java.lang.String value)
           
 void setAssistantName(java.lang.String assistantName)
           
 void setBirthday(java.util.Date birthday)
           
 void setBusinessHomePage(java.lang.String businessHomePage)
           
 void setChildren(java.util.List<java.lang.String> children)
           
 void setCompanies(java.util.List<java.lang.String> companies)
           
 void setCompanyName(java.lang.String companyName)
           
 void setDepartment(java.lang.String department)
           
 void setDisplayName(java.lang.String displayName)
           
 void setEmailAddress1(java.lang.String value)
           
 void setEmailAddress1DisplayAs(java.lang.String value)
           
 void setEmailAddress1Type(java.lang.String value)
           
 void setEmailAddress2(java.lang.String value)
           
 void setEmailAddress2DisplayAs(java.lang.String value)
           
 void setEmailAddress2Type(java.lang.String value)
           
 void setEmailAddress3(java.lang.String value)
           
 void setEmailAddress3DisplayAs(java.lang.String value)
           
 void setEmailAddress3Type(java.lang.String value)
           
 void setFileAs(java.lang.String fileAs)
           
 void setFileAsMapping(FileAsMapping fileAsMapping)
           
 void setFirstName(java.lang.String firstName)
           
 void setImAddress1(java.lang.String value)
           
 void setImAddress2(java.lang.String value)
           
 void setImAddress3(java.lang.String value)
           
 void setInitials(java.lang.String initials)
           
 void setIsPostalAddressBusiness(boolean value)
           
 void setIsPostalAddressHome(boolean value)
           
 void setIsPostalAddressOther(boolean value)
           
 void setJobTitle(java.lang.String jobTitle)
           
 void setLastName(java.lang.String lastName)
           
 void setManager(java.lang.String manager)
           
 void setMiddleName(java.lang.String middleName)
           
 void setMileage(java.lang.String mileage)
           
 void setNameSuffix(java.lang.String suffix)
           
 void setNickname(java.lang.String nickname)
           
 void setOfficeLocation(java.lang.String officeLocation)
           
 void setPhoneNumberAssistantPhone(java.lang.String value)
           
 void setPhoneNumberBusinessFax(java.lang.String value)
           
 void setPhoneNumberBusinessPhone(java.lang.String value)
           
 void setPhoneNumberBusinessPhone2(java.lang.String value)
           
 void setPhoneNumberCallback(java.lang.String value)
           
 void setPhoneNumberCarPhone(java.lang.String value)
           
 void setPhoneNumberCompanyMainPhone(java.lang.String value)
           
 void setPhoneNumberHomeFax(java.lang.String value)
           
 void setPhoneNumberHomePhone(java.lang.String value)
           
 void setPhoneNumberHomePhone2(java.lang.String value)
           
 void setPhoneNumberIsdn(java.lang.String value)
           
 void setPhoneNumberMobilePhone(java.lang.String value)
           
 void setPhoneNumberOtherFax(java.lang.String value)
           
 void setPhoneNumberOtherTelephone(java.lang.String value)
           
 void setPhoneNumberPager(java.lang.String value)
           
 void setPhoneNumberPrimaryPhone(java.lang.String value)
           
 void setPhoneNumberRadioPhone(java.lang.String value)
           
 void setPhoneNumberTelex(java.lang.String value)
           
 void setPhoneNumberTtyTddPhone(java.lang.String value)
           
 void setProfession(java.lang.String profession)
           
 void setSpouseName(java.lang.String spouseName)
           
 void setTitle(java.lang.String title)
           
 void setWeddingAnniversary(java.util.Date weddingAnniversary)
           
 
Methods inherited from interface com.moyosoft.exchange.item.ExchangeItem
copyTo, copyTo, delete, getAttachments, getBody, getBodyAsText, getBodyType, getCategories, getCulture, getDateTimeCreated, getDateTimeReceived, getDateTimeSent, getDisplayCc, getDisplayTo, getExtendedProperties, getImportance, getInReplyTo, getInternetMessageHeaders, getItemClass, getItemId, getItemIdChangeKey, getItemType, getLastModifiedName, getLastModifiedTime, getMimeContent, getMimeContentBytes, getMimeContentCharacterSet, getMimeContentReader, getMimeContentStream, getParentFolder, getParentFolderId, getParentFolderIdChangeKey, getReminderDueBy, getReminderMinutesBeforeStart, getResponsesTypes, getSensitivity, getSize, getSubject, hasVisibleAttachments, isDraft, isFromMe, isReminderSet, isResend, isStored, isSubmitted, moveTo, moveTo, save, save, saveTo, setBody, setBody, setCategories, setCulture, setImportance, setMimeContent, setMimeContent, setMimeContent, setReminder, setSensitivity, setSubject
 

Method Detail

getFileAs

java.lang.String getFileAs()
                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setFileAs

void setFileAs(java.lang.String fileAs)
               throws ExchangeServiceException
Throws:
ExchangeServiceException

getFileAsMapping

FileAsMapping getFileAsMapping()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setFileAsMapping

void setFileAsMapping(FileAsMapping fileAsMapping)
                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getDisplayName

java.lang.String getDisplayName()
                                throws ExchangeServiceException
Throws:
ExchangeServiceException

setDisplayName

void setDisplayName(java.lang.String displayName)
                    throws ExchangeServiceException
Throws:
ExchangeServiceException

getTitle

java.lang.String getTitle()
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

setTitle

void setTitle(java.lang.String title)
              throws ExchangeServiceException
Throws:
ExchangeServiceException

getFirstName

java.lang.String getFirstName()
                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setFirstName

void setFirstName(java.lang.String firstName)
                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getMiddleName

java.lang.String getMiddleName()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setMiddleName

void setMiddleName(java.lang.String middleName)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getLastName

java.lang.String getLastName()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setLastName

void setLastName(java.lang.String lastName)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getNameSuffix

java.lang.String getNameSuffix()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setNameSuffix

void setNameSuffix(java.lang.String suffix)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getInitials

java.lang.String getInitials()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setInitials

void setInitials(java.lang.String initials)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getFullName

java.lang.String getFullName()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

getNickname

java.lang.String getNickname()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setNickname

void setNickname(java.lang.String nickname)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getYomiFirstName

java.lang.String getYomiFirstName()
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getYomiLastName

java.lang.String getYomiLastName()
                                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getCompanyName

java.lang.String getCompanyName()
                                throws ExchangeServiceException
Throws:
ExchangeServiceException

setCompanyName

void setCompanyName(java.lang.String companyName)
                    throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress1

java.lang.String getEmailAddress1()
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress1DisplayAs

java.lang.String getEmailAddress1DisplayAs()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress1Type

java.lang.String getEmailAddress1Type()
                                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress2

java.lang.String getEmailAddress2()
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress2DisplayAs

java.lang.String getEmailAddress2DisplayAs()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress2Type

java.lang.String getEmailAddress2Type()
                                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress3

java.lang.String getEmailAddress3()
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress3DisplayAs

java.lang.String getEmailAddress3DisplayAs()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

getEmailAddress3Type

java.lang.String getEmailAddress3Type()
                                      throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress1

void setEmailAddress1(java.lang.String value)
                      throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress1DisplayAs

void setEmailAddress1DisplayAs(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress1Type

void setEmailAddress1Type(java.lang.String value)
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress2

void setEmailAddress2(java.lang.String value)
                      throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress2DisplayAs

void setEmailAddress2DisplayAs(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress2Type

void setEmailAddress2Type(java.lang.String value)
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress3

void setEmailAddress3(java.lang.String value)
                      throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress3DisplayAs

void setEmailAddress3DisplayAs(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setEmailAddress3Type

void setEmailAddress3Type(java.lang.String value)
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressBusinessStreet

java.lang.String getAddressBusinessStreet()
                                          throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressBusinessCity

java.lang.String getAddressBusinessCity()
                                        throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressBusinessState

java.lang.String getAddressBusinessState()
                                         throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressBusinessCountryOrRegion

java.lang.String getAddressBusinessCountryOrRegion()
                                                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressBusinessPostalCode

java.lang.String getAddressBusinessPostalCode()
                                              throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressHomeStreet

java.lang.String getAddressHomeStreet()
                                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressHomeCity

java.lang.String getAddressHomeCity()
                                    throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressHomeState

java.lang.String getAddressHomeState()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressHomeCountryOrRegion

java.lang.String getAddressHomeCountryOrRegion()
                                               throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressHomePostalCode

java.lang.String getAddressHomePostalCode()
                                          throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressOtherStreet

java.lang.String getAddressOtherStreet()
                                       throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressOtherCity

java.lang.String getAddressOtherCity()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressOtherState

java.lang.String getAddressOtherState()
                                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressOtherCountryOrRegion

java.lang.String getAddressOtherCountryOrRegion()
                                                throws ExchangeServiceException
Throws:
ExchangeServiceException

getAddressOtherPostalCode

java.lang.String getAddressOtherPostalCode()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusiness

void setAddressBusiness(java.lang.String street,
                        java.lang.String city,
                        java.lang.String state,
                        java.lang.String countryOrRegion,
                        java.lang.String postalCode)
                        throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusinessStreet

void setAddressBusinessStreet(java.lang.String value)
                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusinessCity

void setAddressBusinessCity(java.lang.String value)
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusinessState

void setAddressBusinessState(java.lang.String value)
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusinessCountryOrRegion

void setAddressBusinessCountryOrRegion(java.lang.String value)
                                       throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressBusinessPostalCode

void setAddressBusinessPostalCode(java.lang.String value)
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHome

void setAddressHome(java.lang.String street,
                    java.lang.String city,
                    java.lang.String state,
                    java.lang.String countryOrRegion,
                    java.lang.String postalCode)
                    throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHomeStreet

void setAddressHomeStreet(java.lang.String value)
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHomeCity

void setAddressHomeCity(java.lang.String value)
                        throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHomeState

void setAddressHomeState(java.lang.String value)
                         throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHomeCountryOrRegion

void setAddressHomeCountryOrRegion(java.lang.String value)
                                   throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressHomePostalCode

void setAddressHomePostalCode(java.lang.String value)
                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOther

void setAddressOther(java.lang.String street,
                     java.lang.String city,
                     java.lang.String state,
                     java.lang.String countryOrRegion,
                     java.lang.String postalCode)
                     throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOtherStreet

void setAddressOtherStreet(java.lang.String value)
                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOtherCity

void setAddressOtherCity(java.lang.String value)
                         throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOtherState

void setAddressOtherState(java.lang.String value)
                          throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOtherCountryOrRegion

void setAddressOtherCountryOrRegion(java.lang.String value)
                                    throws ExchangeServiceException
Throws:
ExchangeServiceException

setAddressOtherPostalCode

void setAddressOtherPostalCode(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberAssistantPhone

java.lang.String getPhoneNumberAssistantPhone()
                                              throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberBusinessFax

java.lang.String getPhoneNumberBusinessFax()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberBusinessPhone

java.lang.String getPhoneNumberBusinessPhone()
                                             throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberBusinessPhone2

java.lang.String getPhoneNumberBusinessPhone2()
                                              throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberCallback

java.lang.String getPhoneNumberCallback()
                                        throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberCarPhone

java.lang.String getPhoneNumberCarPhone()
                                        throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberCompanyMainPhone

java.lang.String getPhoneNumberCompanyMainPhone()
                                                throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberHomeFax

java.lang.String getPhoneNumberHomeFax()
                                       throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberHomePhone

java.lang.String getPhoneNumberHomePhone()
                                         throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberHomePhone2

java.lang.String getPhoneNumberHomePhone2()
                                          throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberIsdn

java.lang.String getPhoneNumberIsdn()
                                    throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberMobilePhone

java.lang.String getPhoneNumberMobilePhone()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberOtherFax

java.lang.String getPhoneNumberOtherFax()
                                        throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberOtherTelephone

java.lang.String getPhoneNumberOtherTelephone()
                                              throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberPager

java.lang.String getPhoneNumberPager()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberPrimaryPhone

java.lang.String getPhoneNumberPrimaryPhone()
                                            throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberRadioPhone

java.lang.String getPhoneNumberRadioPhone()
                                          throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberTelex

java.lang.String getPhoneNumberTelex()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

getPhoneNumberTtyTddPhone

java.lang.String getPhoneNumberTtyTddPhone()
                                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberAssistantPhone

void setPhoneNumberAssistantPhone(java.lang.String value)
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberBusinessFax

void setPhoneNumberBusinessFax(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberBusinessPhone

void setPhoneNumberBusinessPhone(java.lang.String value)
                                 throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberBusinessPhone2

void setPhoneNumberBusinessPhone2(java.lang.String value)
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberCallback

void setPhoneNumberCallback(java.lang.String value)
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberCarPhone

void setPhoneNumberCarPhone(java.lang.String value)
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberCompanyMainPhone

void setPhoneNumberCompanyMainPhone(java.lang.String value)
                                    throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberHomeFax

void setPhoneNumberHomeFax(java.lang.String value)
                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberHomePhone

void setPhoneNumberHomePhone(java.lang.String value)
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberHomePhone2

void setPhoneNumberHomePhone2(java.lang.String value)
                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberIsdn

void setPhoneNumberIsdn(java.lang.String value)
                        throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberMobilePhone

void setPhoneNumberMobilePhone(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberOtherFax

void setPhoneNumberOtherFax(java.lang.String value)
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberOtherTelephone

void setPhoneNumberOtherTelephone(java.lang.String value)
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberPager

void setPhoneNumberPager(java.lang.String value)
                         throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberPrimaryPhone

void setPhoneNumberPrimaryPhone(java.lang.String value)
                                throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberRadioPhone

void setPhoneNumberRadioPhone(java.lang.String value)
                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberTelex

void setPhoneNumberTelex(java.lang.String value)
                         throws ExchangeServiceException
Throws:
ExchangeServiceException

setPhoneNumberTtyTddPhone

void setPhoneNumberTtyTddPhone(java.lang.String value)
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

getAssistantName

java.lang.String getAssistantName()
                                  throws ExchangeServiceException
Throws:
ExchangeServiceException

setAssistantName

void setAssistantName(java.lang.String assistantName)
                      throws ExchangeServiceException
Throws:
ExchangeServiceException

getBirthday

java.util.Date getBirthday()
                           throws ExchangeServiceException
Throws:
ExchangeServiceException

setBirthday

void setBirthday(java.util.Date birthday)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getBusinessHomePage

java.lang.String getBusinessHomePage()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

setBusinessHomePage

void setBusinessHomePage(java.lang.String businessHomePage)
                         throws ExchangeServiceException
Throws:
ExchangeServiceException

getChildren

java.util.List<java.lang.String> getChildren()
                                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setChildren

void setChildren(java.util.List<java.lang.String> children)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getCompanies

java.util.List<java.lang.String> getCompanies()
                                              throws ExchangeServiceException
Throws:
ExchangeServiceException

setCompanies

void setCompanies(java.util.List<java.lang.String> companies)
                  throws ExchangeServiceException
Throws:
ExchangeServiceException

getDepartment

java.lang.String getDepartment()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setDepartment

void setDepartment(java.lang.String department)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getImAddress1

java.lang.String getImAddress1()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

getImAddress2

java.lang.String getImAddress2()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

getImAddress3

java.lang.String getImAddress3()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setImAddress1

void setImAddress1(java.lang.String value)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

setImAddress2

void setImAddress2(java.lang.String value)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

setImAddress3

void setImAddress3(java.lang.String value)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getJobTitle

java.lang.String getJobTitle()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setJobTitle

void setJobTitle(java.lang.String jobTitle)
                 throws ExchangeServiceException
Throws:
ExchangeServiceException

getManager

java.lang.String getManager()
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setManager

void setManager(java.lang.String manager)
                throws ExchangeServiceException
Throws:
ExchangeServiceException

getMileage

java.lang.String getMileage()
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setMileage

void setMileage(java.lang.String mileage)
                throws ExchangeServiceException
Throws:
ExchangeServiceException

getOfficeLocation

java.lang.String getOfficeLocation()
                                   throws ExchangeServiceException
Throws:
ExchangeServiceException

setOfficeLocation

void setOfficeLocation(java.lang.String officeLocation)
                       throws ExchangeServiceException
Throws:
ExchangeServiceException

isPostalAddressBusiness

boolean isPostalAddressBusiness()
                                throws ExchangeServiceException
Throws:
ExchangeServiceException

isPostalAddressHome

boolean isPostalAddressHome()
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

isPostalAddressOther

boolean isPostalAddressOther()
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

setIsPostalAddressBusiness

void setIsPostalAddressBusiness(boolean value)
                                throws ExchangeServiceException
Throws:
ExchangeServiceException

setIsPostalAddressHome

void setIsPostalAddressHome(boolean value)
                            throws ExchangeServiceException
Throws:
ExchangeServiceException

setIsPostalAddressOther

void setIsPostalAddressOther(boolean value)
                             throws ExchangeServiceException
Throws:
ExchangeServiceException

getProfession

java.lang.String getProfession()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setProfession

void setProfession(java.lang.String profession)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getSpouseName

java.lang.String getSpouseName()
                               throws ExchangeServiceException
Throws:
ExchangeServiceException

setSpouseName

void setSpouseName(java.lang.String spouseName)
                   throws ExchangeServiceException
Throws:
ExchangeServiceException

getWeddingAnniversary

java.util.Date getWeddingAnniversary()
                                     throws ExchangeServiceException
Throws:
ExchangeServiceException

setWeddingAnniversary

void setWeddingAnniversary(java.util.Date weddingAnniversary)
                           throws ExchangeServiceException
Throws:
ExchangeServiceException