com.google.gdata.data.contacts
Class ContactEntry

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.BaseEntry<ContactEntry>
              extended by com.google.gdata.data.contacts.ContactEntry
All Implemented Interfaces:
Extension, IEntry, Kind.Adaptable, Kind.Adaptor

public class ContactEntry
extends BaseEntry<ContactEntry>

Describes a contact entry.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.BaseEntry
BaseEntry.AtomHandler, BaseEntry.EntryState
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Nested classes/interfaces inherited from class com.google.gdata.data.AbstractExtension
AbstractExtension.AttributesHandler
 
Field Summary
static Category CATEGORY
          Contact kind category.
static java.lang.String KIND
          Contact kind term value.
 
Fields inherited from class com.google.gdata.data.BaseEntry
state
 
Fields inherited from class com.google.gdata.data.ExtensionPoint
xmlBlob
 
Fields inherited from class com.google.gdata.data.AbstractExtension
localName, namespace
 
Constructor Summary
ContactEntry()
          Default mutable constructor.
ContactEntry(BaseEntry<?> sourceEntry)
          Constructs a new instance by doing a shallow copy of data from an existing BaseEntry instance.
 
Method Summary
 void addEmailAddress(Email emailAddress)
          Adds a new email address.
 void addExtendedProperty(ExtendedProperty extendedProperty)
          Adds a new extended property.
 void addGroupMembershipInfo(GroupMembershipInfo groupMembershipInfo)
          Adds a new group membership info.
 void addImAddress(Im imAddress)
          Adds a new instant messaging address.
 void addOrganization(Organization organization)
          Adds a new organization.
 void addPhoneNumber(PhoneNumber phoneNumber)
          Adds a new phone number.
 void addPostalAddress(PostalAddress postalAddress)
          Adds a new postal address.
 void declareExtensions(ExtensionProfile extProfile)
          Declares the set of expected Extension types for an ExtensionPoint within the target extension profile.
 Link getContactEditPhotoLink()
          Returns the link to edit contact photo.
 Link getContactPhotoLink()
          Returns the link that provides the contact photo.
 Deleted getDeleted()
          Returns the marker for deleted entries.
 java.util.List<Email> getEmailAddresses()
          Returns the email addresses.
 java.util.List<ExtendedProperty> getExtendedProperties()
          Returns the extended properties.
 java.util.List<GroupMembershipInfo> getGroupMembershipInfos()
          Returns the group membership infos.
 java.util.List<Im> getImAddresses()
          Returns the instant messaging addresses.
 java.util.List<Organization> getOrganizations()
          Returns the organizations.
 java.util.List<PhoneNumber> getPhoneNumbers()
          Returns the phone numbers.
 java.util.List<PostalAddress> getPostalAddresses()
          Returns the postal addresses.
 boolean hasDeleted()
          Returns whether it has the marker for deleted entries.
 boolean hasEmailAddresses()
          Returns whether it has the email addresses.
 boolean hasExtendedProperties()
          Returns whether it has the extended properties.
 boolean hasGroupMembershipInfos()
          Returns whether it has the group membership infos.
 boolean hasImAddresses()
          Returns whether it has the instant messaging addresses.
 boolean hasOrganizations()
          Returns whether it has the organizations.
 boolean hasPhoneNumbers()
          Returns whether it has the phone numbers.
 boolean hasPostalAddresses()
          Returns whether it has the postal addresses.
 void setDeleted(Deleted deleted)
          Sets the marker for deleted entries.
 java.lang.String toString()
           
protected  void validate()
          Checks the attributes to see if there are any problems.
 
Methods inherited from class com.google.gdata.data.BaseEntry
addAdaptor, addHtmlLink, addLink, addLink, delete, generate, generateAtom, generateRss, getAdaptedEntry, getAdaptor, getAdaptors, getAuthors, getCanEdit, getCategories, getContent, getContentHandlerInfo, getContributors, getEdited, getEditLink, getEtag, getHandler, getHtmlLink, getId, getLink, getLinks, getLinks, getMediaEditLink, getPlainTextContent, getPubControl, getPublished, getRights, getSelf, getSelfLink, getService, getSource, getSummary, getTextContent, getTitle, getUpdated, getVersionId, isDraft, parseAtom, parseAtom, parseAtom, readEntry, readEntry, removeLinks, setCanEdit, setContent, setContent, setDraft, setEdited, setEtag, setId, setPubControl, setPublished, setRights, setService, setSource, setSummary, setTitle, setUpdated, setVersionId, update, visitChildren
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addExtension, addRepeatingExtension, addRepeatingExtension, checkRequiredExtensions, generate, generateCumulativeXmlBlob, generateExtensions, generateStartElement, getExtension, getExtensionHandler, getExtensions, getManifest, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, initializeArbitraryXml, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit, visitChild
 
Methods inherited from class com.google.gdata.data.AbstractExtension
consumeAttributes, eq, generateAttributes, getExtensionLocalName, getExtensionNamespace, isImmutable, putAttributes, sameClassAs, setImmutable, throwExceptionForMissingAttribute, throwExceptionIfImmutable
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

KIND

public static final java.lang.String KIND
Contact kind term value.

See Also:
Constant Field Values

CATEGORY

public static final Category CATEGORY
Contact kind category.

Constructor Detail

ContactEntry

public ContactEntry()
Default mutable constructor.


ContactEntry

public ContactEntry(BaseEntry<?> sourceEntry)
Constructs a new instance by doing a shallow copy of data from an existing BaseEntry instance.

Parameters:
sourceEntry - source entry
Method Detail

declareExtensions

public void declareExtensions(ExtensionProfile extProfile)
Description copied from class: ExtensionPoint
Declares the set of expected Extension types for an ExtensionPoint within the target extension profile. The base implementation does not declare any extensions, but can be overridden by specific types of ExtensionPoints that always contain a well-defined set of extensions.

Specified by:
declareExtensions in interface Kind.Adaptor
Overrides:
declareExtensions in class ExtensionPoint
Parameters:
extProfile - the ExtensionProfile to initialize.
See Also:
ExtensionProfile.addDeclarations(Kind.Adaptor)

getDeleted

public Deleted getDeleted()
Returns the marker for deleted entries.

Returns:
marker for deleted entries

setDeleted

public void setDeleted(Deleted deleted)
Sets the marker for deleted entries.

Parameters:
deleted - marker for deleted entries or null to reset

hasDeleted

public boolean hasDeleted()
Returns whether it has the marker for deleted entries.

Returns:
whether it has the marker for deleted entries

getEmailAddresses

public java.util.List<Email> getEmailAddresses()
Returns the email addresses.

Returns:
email addresses

addEmailAddress

public void addEmailAddress(Email emailAddress)
Adds a new email address.

Parameters:
emailAddress - email address

hasEmailAddresses

public boolean hasEmailAddresses()
Returns whether it has the email addresses.

Returns:
whether it has the email addresses

getExtendedProperties

public java.util.List<ExtendedProperty> getExtendedProperties()
Returns the extended properties.

Returns:
extended properties

addExtendedProperty

public void addExtendedProperty(ExtendedProperty extendedProperty)
Adds a new extended property.

Parameters:
extendedProperty - extended property

hasExtendedProperties

public boolean hasExtendedProperties()
Returns whether it has the extended properties.

Returns:
whether it has the extended properties

getGroupMembershipInfos

public java.util.List<GroupMembershipInfo> getGroupMembershipInfos()
Returns the group membership infos.

Returns:
group membership infos

addGroupMembershipInfo

public void addGroupMembershipInfo(GroupMembershipInfo groupMembershipInfo)
Adds a new group membership info.

Parameters:
groupMembershipInfo - group membership info

hasGroupMembershipInfos

public boolean hasGroupMembershipInfos()
Returns whether it has the group membership infos.

Returns:
whether it has the group membership infos

getImAddresses

public java.util.List<Im> getImAddresses()
Returns the instant messaging addresses.

Returns:
instant messaging addresses

addImAddress

public void addImAddress(Im imAddress)
Adds a new instant messaging address.

Parameters:
imAddress - instant messaging address

hasImAddresses

public boolean hasImAddresses()
Returns whether it has the instant messaging addresses.

Returns:
whether it has the instant messaging addresses

getOrganizations

public java.util.List<Organization> getOrganizations()
Returns the organizations.

Returns:
organizations

addOrganization

public void addOrganization(Organization organization)
Adds a new organization.

Parameters:
organization - organization

hasOrganizations

public boolean hasOrganizations()
Returns whether it has the organizations.

Returns:
whether it has the organizations

getPhoneNumbers

public java.util.List<PhoneNumber> getPhoneNumbers()
Returns the phone numbers.

Returns:
phone numbers

addPhoneNumber

public void addPhoneNumber(PhoneNumber phoneNumber)
Adds a new phone number.

Parameters:
phoneNumber - phone number

hasPhoneNumbers

public boolean hasPhoneNumbers()
Returns whether it has the phone numbers.

Returns:
whether it has the phone numbers

getPostalAddresses

public java.util.List<PostalAddress> getPostalAddresses()
Returns the postal addresses.

Returns:
postal addresses

addPostalAddress

public void addPostalAddress(PostalAddress postalAddress)
Adds a new postal address.

Parameters:
postalAddress - postal address

hasPostalAddresses

public boolean hasPostalAddresses()
Returns whether it has the postal addresses.

Returns:
whether it has the postal addresses

getContactEditPhotoLink

public Link getContactEditPhotoLink()
Returns the link to edit contact photo.

Returns:
Link to edit contact photo or null for none.

getContactPhotoLink

public Link getContactPhotoLink()
Returns the link that provides the contact photo.

Returns:
Link that provides the contact photo or null for none.

validate

protected void validate()
Description copied from class: AbstractExtension
Checks the attributes to see if there are any problems. Default implementation does nothing, though generally this is discouraged unless there really are no restrictions.

Overrides:
validate in class AbstractExtension

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object