|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ExchangeContact
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());
}
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)
|
Method Detail |
---|
java.lang.String getFileAs() throws ExchangeServiceException
ExchangeServiceException
void setFileAs(java.lang.String fileAs) throws ExchangeServiceException
ExchangeServiceException
FileAsMapping getFileAsMapping() throws ExchangeServiceException
ExchangeServiceException
void setFileAsMapping(FileAsMapping fileAsMapping) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getDisplayName() throws ExchangeServiceException
ExchangeServiceException
void setDisplayName(java.lang.String displayName) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getTitle() throws ExchangeServiceException
ExchangeServiceException
void setTitle(java.lang.String title) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getFirstName() throws ExchangeServiceException
ExchangeServiceException
void setFirstName(java.lang.String firstName) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getMiddleName() throws ExchangeServiceException
ExchangeServiceException
void setMiddleName(java.lang.String middleName) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getLastName() throws ExchangeServiceException
ExchangeServiceException
void setLastName(java.lang.String lastName) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getNameSuffix() throws ExchangeServiceException
ExchangeServiceException
void setNameSuffix(java.lang.String suffix) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getInitials() throws ExchangeServiceException
ExchangeServiceException
void setInitials(java.lang.String initials) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getFullName() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getNickname() throws ExchangeServiceException
ExchangeServiceException
void setNickname(java.lang.String nickname) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getYomiFirstName() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getYomiLastName() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getCompanyName() throws ExchangeServiceException
ExchangeServiceException
void setCompanyName(java.lang.String companyName) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress1() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress1DisplayAs() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress1Type() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress2() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress2DisplayAs() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress2Type() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress3() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress3DisplayAs() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getEmailAddress3Type() throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress1(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress1DisplayAs(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress1Type(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress2(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress2DisplayAs(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress2Type(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress3(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress3DisplayAs(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setEmailAddress3Type(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressBusinessStreet() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressBusinessCity() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressBusinessState() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressBusinessCountryOrRegion() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressBusinessPostalCode() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressHomeStreet() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressHomeCity() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressHomeState() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressHomeCountryOrRegion() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressHomePostalCode() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressOtherStreet() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressOtherCity() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressOtherState() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressOtherCountryOrRegion() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAddressOtherPostalCode() throws ExchangeServiceException
ExchangeServiceException
void setAddressBusiness(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode) throws ExchangeServiceException
ExchangeServiceException
void setAddressBusinessStreet(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressBusinessCity(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressBusinessState(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressBusinessCountryOrRegion(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressBusinessPostalCode(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressHome(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode) throws ExchangeServiceException
ExchangeServiceException
void setAddressHomeStreet(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressHomeCity(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressHomeState(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressHomeCountryOrRegion(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressHomePostalCode(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressOther(java.lang.String street, java.lang.String city, java.lang.String state, java.lang.String countryOrRegion, java.lang.String postalCode) throws ExchangeServiceException
ExchangeServiceException
void setAddressOtherStreet(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressOtherCity(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressOtherState(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressOtherCountryOrRegion(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setAddressOtherPostalCode(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberAssistantPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberBusinessFax() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberBusinessPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberBusinessPhone2() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberCallback() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberCarPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberCompanyMainPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberHomeFax() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberHomePhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberHomePhone2() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberIsdn() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberMobilePhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberOtherFax() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberOtherTelephone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberPager() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberPrimaryPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberRadioPhone() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberTelex() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getPhoneNumberTtyTddPhone() throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberAssistantPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberBusinessFax(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberBusinessPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberBusinessPhone2(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberCallback(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberCarPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberCompanyMainPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberHomeFax(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberHomePhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberHomePhone2(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberIsdn(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberMobilePhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberOtherFax(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberOtherTelephone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberPager(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberPrimaryPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberRadioPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberTelex(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setPhoneNumberTtyTddPhone(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getAssistantName() throws ExchangeServiceException
ExchangeServiceException
void setAssistantName(java.lang.String assistantName) throws ExchangeServiceException
ExchangeServiceException
java.util.Date getBirthday() throws ExchangeServiceException
ExchangeServiceException
void setBirthday(java.util.Date birthday) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getBusinessHomePage() throws ExchangeServiceException
ExchangeServiceException
void setBusinessHomePage(java.lang.String businessHomePage) throws ExchangeServiceException
ExchangeServiceException
java.util.List<java.lang.String> getChildren() throws ExchangeServiceException
ExchangeServiceException
void setChildren(java.util.List<java.lang.String> children) throws ExchangeServiceException
ExchangeServiceException
java.util.List<java.lang.String> getCompanies() throws ExchangeServiceException
ExchangeServiceException
void setCompanies(java.util.List<java.lang.String> companies) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getDepartment() throws ExchangeServiceException
ExchangeServiceException
void setDepartment(java.lang.String department) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getImAddress1() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getImAddress2() throws ExchangeServiceException
ExchangeServiceException
java.lang.String getImAddress3() throws ExchangeServiceException
ExchangeServiceException
void setImAddress1(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setImAddress2(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
void setImAddress3(java.lang.String value) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getJobTitle() throws ExchangeServiceException
ExchangeServiceException
void setJobTitle(java.lang.String jobTitle) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getManager() throws ExchangeServiceException
ExchangeServiceException
void setManager(java.lang.String manager) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getMileage() throws ExchangeServiceException
ExchangeServiceException
void setMileage(java.lang.String mileage) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getOfficeLocation() throws ExchangeServiceException
ExchangeServiceException
void setOfficeLocation(java.lang.String officeLocation) throws ExchangeServiceException
ExchangeServiceException
boolean isPostalAddressBusiness() throws ExchangeServiceException
ExchangeServiceException
boolean isPostalAddressHome() throws ExchangeServiceException
ExchangeServiceException
boolean isPostalAddressOther() throws ExchangeServiceException
ExchangeServiceException
void setIsPostalAddressBusiness(boolean value) throws ExchangeServiceException
ExchangeServiceException
void setIsPostalAddressHome(boolean value) throws ExchangeServiceException
ExchangeServiceException
void setIsPostalAddressOther(boolean value) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getProfession() throws ExchangeServiceException
ExchangeServiceException
void setProfession(java.lang.String profession) throws ExchangeServiceException
ExchangeServiceException
java.lang.String getSpouseName() throws ExchangeServiceException
ExchangeServiceException
void setSpouseName(java.lang.String spouseName) throws ExchangeServiceException
ExchangeServiceException
java.util.Date getWeddingAnniversary() throws ExchangeServiceException
ExchangeServiceException
void setWeddingAnniversary(java.util.Date weddingAnniversary) throws ExchangeServiceException
ExchangeServiceException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |