public class Source extends CommonAttributes
Per RFC4287:
If an atom:entry is copied from one feed into another feed, then the source atom:feed's metadata (all child elements of atom:feed other than the atom:entry elements) MAY be preserved within the copied entry by adding an atom:source child element, if it is not already present in the entry, and including some or all of the source feed's Metadata elements as the atom:source element's children. Such metadata SHOULD be preserved if the source atom:feed contains any of the child elements atom:author, atom:contributor, atom:rights, or atom:category and those child elements are not present in the source atom:entry. atomSource = element atom:source { atomCommonAttributes, (atomAuthor* & atomCategory* & atomContributor* & atomGenerator? & atomIcon? & atomId? & atomLink* & atomLogo? & atomRights? & atomSubtitle? & atomTitle? & atomUpdated? & extensionElement*) } The atom:source element is designed to allow the aggregation of entries from different feeds while retaining information about an entry's source feed. For this reason, Atom Processors that are performing such aggregation SHOULD include at least the required feed-level Metadata elements (atom:id, atom:title, and atom:updated) in the atom:source element.
Constructor and Description |
---|
Source() |
Modifier and Type | Method and Description |
---|---|
List<Person> |
getAuthors() |
List<Category> |
getCategories() |
List<Person> |
getContributors() |
Generator |
getGenerator() |
URI |
getIcon() |
URI |
getId() |
Link |
getLinkByRel(String name) |
List<Link> |
getLinks() |
URI |
getLogo() |
String |
getRights() |
String |
getSubtitle() |
String |
getTitle() |
Date |
getUpdated() |
void |
setGenerator(Generator generator) |
void |
setIcon(URI icon) |
void |
setId(URI id) |
void |
setLogo(URI logo) |
void |
setRights(String rights) |
void |
setSubtitle(String subtitle) |
void |
setTitle(String title) |
void |
setUpdated(Date updated) |
getBase, getExtensionAttributes, getLanguage, setBase, setLanguage
public URI getId()
public void setId(URI id)
public String getTitle()
public void setTitle(String title)
public Date getUpdated()
public void setUpdated(Date updated)
public Generator getGenerator()
public void setGenerator(Generator generator)
public URI getIcon()
public void setIcon(URI icon)
public URI getLogo()
public void setLogo(URI logo)
public String getRights()
public void setRights(String rights)
public String getSubtitle()
public void setSubtitle(String subtitle)
Copyright © 2016 JBoss by Red Hat. All rights reserved.