Class CommonEntry
 This abstract class contains properties common to Feed, Entry, and Source 
 elements. These elements share a common set of metadata properties including authors, contributors, 
 categories, links, and timestamps.
 
Common properties include:
- id (required) - Permanent, unique identifier
- title (required) - Human-readable title
- updated (required) - Last modification timestamp
- authors - Author information
- categories - Classification/tagging information
- contributors - Contributor information
- links - Related resources
- rights - Copyright/rights information
 This class extends Common, inheriting the 
See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBean constructor.CommonEntry(String id, String title, String updated) Normal constructor.CommonEntry(Id id, Text title, Calendar updated) Normal constructor.
- 
Method SummaryModifier and TypeMethodDescriptionPerson[]Bean property getter:authors .Category[]Bean property getter:categories .Person[]Bean property getter:contributors .getId()Bean property getter:id .Link[]getLinks()Bean property getter:links .Bean property getter:rights .getTitle()Bean property getter:title .Bean property getter:updated .setAuthors(Person... value) Bean property setter:authors .Bean property setter:base .setCategories(Category... value) Bean property setter:categories .setContributors(Person... value) Bean property setter:contributors .Bean property fluent setter:id .Bean property setter:id .Bean property setter:lang .Bean property setter:links .Bean property fluent setter:rights .Bean property setter:rights .Bean property fluent setter:title .Bean property setter:title .setUpdated(String value) Bean property fluent setter:updated .setUpdated(Calendar value) Bean property setter:updated .
- 
Constructor Details- 
CommonEntryNormal constructor.- Parameters:
- id- The ID of this object.
- title- The title of this object.
- updated- The updated timestamp of this object.
 
- 
CommonEntryNormal constructor.- Parameters:
- id- The ID of this object.
- title- The title of this object.
- updated- The updated timestamp of this object.
 
- 
CommonEntrypublic CommonEntry()Bean constructor.
 
- 
- 
Method Details- 
getAuthorsBean property getter:authors .The list of authors for this object. - Returns:
- The property value, or null if it is not set.
 
- 
setAuthorsBean property setter:authors .The list of authors for this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
getCategoriesBean property getter:categories .The list of categories of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setCategoriesBean property setter:categories .The list of categories of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
getContributorsBean property getter:contributors .The list of contributors of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setContributorsBean property setter:contributors .The list of contributors of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
getIdBean property getter:id .The ID of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setIdBean property setter:id .The ID of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
setIdBean property fluent setter:id .The ID of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object.
 
- 
getLinksBean property getter:links .The list of links of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setLinksBean property setter:links .The list of links of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
getRightsBean property getter:rights .The rights statement of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setRightsBean property setter:rights .The rights statement of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
setRightsBean property fluent setter:rights .The rights statement of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object.
 
- 
getTitleBean property getter:title .The title of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setTitleBean property setter:title .The title of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
setTitleBean property fluent setter:title .The title of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object.
 
- 
getUpdatedBean property getter:updated .The update timestamp of this object. - Returns:
- The property value, or null if it is not set.
 
- 
setUpdatedBean property setter:updated .The update timestamp of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object
 
- 
setUpdatedBean property fluent setter:updated .The update timestamp of this object. - Parameters:
- value- The new value for this property.
 Can be- null to unset the property.
- Returns:
- This object.
 
- 
setBaseDescription copied from class:Common
- 
setLangDescription copied from class:CommonBean property setter:lang .Sets the natural language of the element's content (xml:lang attribute). Example:Text title =new Text("text" ) .setText("Mon Blog" ) .setLang("fr" );
 
-