Class SyndFeedImpl

    • Field Detail

      • CONVENIENCE_PROPERTIES

        public static final Set<String> CONVENIENCE_PROPERTIES
        Unmodifiable Set containing the convenience properties of this class.

        Convenience properties are mapped to Modules, for cloning the convenience properties can be ignored as the will be copied as part of the module cloning.

    • Constructor Detail

      • SyndFeedImpl

        protected SyndFeedImpl​(Class<?> beanClass,
                               Set<String> convenienceProperties)
        For implementations extending SyndFeedImpl to be able to use the ObjectBean functionality with extended interfaces.

        Parameters:
        beanClass -
        convenienceProperties - set containing the convenience properties of the SyndEntryImpl (the are ignored during cloning, check CloneableBean for details).
      • SyndFeedImpl

        public SyndFeedImpl()
      • SyndFeedImpl

        public SyndFeedImpl​(WireFeed feed)
        Creates a SyndFeedImpl and populates all its properties out of the given RSS Channel or Atom Feed properties.

        Parameters:
        feed - the RSS Channel or the Atom Feed to populate the properties from.
      • SyndFeedImpl

        public SyndFeedImpl​(WireFeed feed,
                            boolean preserveWireFeed)
        Creates a SyndFeedImpl and populates all its properties out of the given RSS Channel or Atom Feed properties, while optionally preserving the WireFeed for access via the orignalWireFeed() method.
    • Method Detail

      • getSupportedFeedTypes

        public List<String> getSupportedFeedTypes()
        Returns the real feed types the SyndFeedImpl supports when converting from and to.

        Specified by:
        getSupportedFeedTypes in interface SyndFeed
        Returns:
        the real feed type supported.
      • equals

        public boolean equals​(Object other)
        Indicates whether some other object is "equal to" this one as defined by the Object equals() method.

        Overrides:
        equals in class Object
        Parameters:
        other - he reference object with which to compare.
        Returns:
        true if 'this' object is equal to the 'other' object.
      • hashCode

        public int hashCode()
        Returns a hashcode value for the object.

        It follows the contract defined by the Object hashCode() method.

        Overrides:
        hashCode in class Object
        Returns:
        the hashcode of the bean object.
      • toString

        public String toString()
        Returns the String representation for the object.

        Overrides:
        toString in class Object
        Returns:
        String representation for the object.
      • createWireFeed

        public WireFeed createWireFeed()
        Creates a real feed containing the information of the SyndFeedImpl.

        The feed type of the created WireFeed is taken from the SyndFeedImpl feedType property.

        Specified by:
        createWireFeed in interface SyndFeed
        Returns:
        the real feed.
      • createWireFeed

        public WireFeed createWireFeed​(String feedType)
        Creates a real feed containing the information of the SyndFeedImpl.

        Specified by:
        createWireFeed in interface SyndFeed
        Parameters:
        feedType - the feed type for the WireFeed to be created.
        Returns:
        the real feed.
      • originalWireFeed

        public WireFeed originalWireFeed()
        Returns the WireFeed this SyndFeed was created from. Will return null if the original feed is not stored or if this SyndFeed was not created from a WireFeed.
        Note: The wire feed returned here will NOT contain any modifications done on this SyndFeed since it was created. That is in contrast to the createWireFeed method, which will reflect the current state of the SyndFeed
        Specified by:
        originalWireFeed in interface SyndFeed
        Returns:
        The WireFeed this was created from, or null
      • getFeedType

        public String getFeedType()
        Returns the wire feed type the feed had/will-have when coverted from/to a WireFeed.

        Specified by:
        getFeedType in interface SyndFeed
        Returns:
        the feed type, null if none.
      • setFeedType

        public void setFeedType​(String feedType)
        Sets the wire feed type the feed will-have when coverted to a WireFeed.

        Specified by:
        setFeedType in interface SyndFeed
        Parameters:
        feedType - the feed type to set, null if none.
      • getEncoding

        public String getEncoding()
        Returns the charset encoding of a the feed. This is not set by Rome parsers.

        Specified by:
        getEncoding in interface SyndFeed
        Returns:
        the charset encoding of the feed.
      • setEncoding

        public void setEncoding​(String encoding)
        Sets the charset encoding of a the feed. This is not set by Rome parsers.

        Specified by:
        setEncoding in interface SyndFeed
        Parameters:
        encoding - the charset encoding of the feed.
      • getUri

        public String getUri()
        Returns the feed URI.

        How the feed URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type. This is explained in detail in Rome documentation, Feed and entry URI mapping.

        The returned URI is a normalized URI as specified in RFC 2396bis.

        Note: The URI is the unique identifier, in the RSS 2.0/atom case this is the GUID, for RSS 1.0 this is the URI attribute of the item. The Link is the URL that the item is accessible under, the URI is the permanent identifier which the aggregator should use to reference this item. Often the URI will use some standardized identifier scheme such as DOI's so that items can be identified even if they appear in multiple feeds with different "links" (they might be on different hosting platforms but be the same item). Also, though rare, there could be multiple items with the same link but a different URI and associated metadata which need to be treated as distinct entities. In the RSS 1.0 case the URI must be a valid RDF URI reference.

        Specified by:
        getUri in interface SyndFeed
        Returns:
        the feed URI, null if none.
      • setUri

        public void setUri​(String uri)
        Sets the feed URI.

        How the feed URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type. This is explained in detail in Rome documentation, Feed and entry URI mapping.

        Note: The URI is the unique identifier, in the RSS 2.0/atom case this is the GUID, for RSS 1.0 this is the URI attribute of the item. The Link is the URL that the item is accessible under, the URI is the permanent identifier which the aggregator should use to reference this item. Often the URI will use some standardized identifier scheme such as DOI's so that items can be identified even if they appear in multiple feeds with different "links" (they might be on different hosting platforms but be the same item). Also, though rare, there could be multiple items with the same link but a different URI and associated metadata which need to be treated as distinct entities. In the RSS 1.0 case the URI must be a valid RDF URI reference.

        Specified by:
        setUri in interface SyndFeed
        Parameters:
        uri - the feed URI to set, null if none.
      • getTitle

        public String getTitle()
        Returns the feed title.

        Specified by:
        getTitle in interface SyndFeed
        Returns:
        the feed title, null if none.
      • setTitle

        public void setTitle​(String title)
        Sets the feed title.

        Specified by:
        setTitle in interface SyndFeed
        Parameters:
        title - the feed title to set, null if none.
      • getTitleEx

        public SyndContent getTitleEx()
        Returns the feed title as a text construct.

        Specified by:
        getTitleEx in interface SyndFeed
        Returns:
        the feed title, null if none.
      • setTitleEx

        public void setTitleEx​(SyndContent title)
        Sets the feed title as a text construct.

        Specified by:
        setTitleEx in interface SyndFeed
        Parameters:
        title - the feed title to set, null if none.
      • getLink

        public String getLink()
        Returns the feed link.

        Note: The URI is the unique identifier, in the RSS 2.0/atom case this is the GUID, for RSS 1.0 this is the URI attribute of the item. The Link is the URL that the item is accessible under, the URI is the permanent identifier which the aggregator should use to reference this item. Often the URI will use some standardized identifier scheme such as DOI's so that items can be identified even if they appear in multiple feeds with different "links" (they might be on different hosting platforms but be the same item). Also, though rare, there could be multiple items with the same link but a different URI and associated metadata which need to be treated as distinct entities. In the RSS 1.0 case the URI must be a valid RDF URI reference.

        Specified by:
        getLink in interface SyndFeed
        Returns:
        the feed link, null if none.
      • setLink

        public void setLink​(String link)
        Sets the feed link.

        Note: The URI is the unique identifier, in the RSS 2.0/atom case this is the GUID, for RSS 1.0 this is the URI attribute of the item. The Link is the URL that the item is accessible under, the URI is the permanent identifier which the aggregator should use to reference this item. Often the URI will use some standardized identifier scheme such as DOI's so that items can be identified even if they appear in multiple feeds with different "links" (they might be on different hosting platforms but be the same item). Also, though rare, there could be multiple items with the same link but a different URI and associated metadata which need to be treated as distinct entities. In the RSS 1.0 case the URI must be a valid RDF URI reference.

        Specified by:
        setLink in interface SyndFeed
        Parameters:
        link - the feed link to set, null if none.
      • getDescription

        public String getDescription()
        Returns the feed description.

        Specified by:
        getDescription in interface SyndFeed
        Returns:
        the feed description, null if none.
      • setDescription

        public void setDescription​(String description)
        Sets the feed description.

        Specified by:
        setDescription in interface SyndFeed
        Parameters:
        description - the feed description to set, null if none.
      • getDescriptionEx

        public SyndContent getDescriptionEx()
        Returns the feed description as a text construct.

        Specified by:
        getDescriptionEx in interface SyndFeed
        Returns:
        the feed description, null if none.
      • setDescriptionEx

        public void setDescriptionEx​(SyndContent description)
        Sets the feed description as a text construct.

        Specified by:
        setDescriptionEx in interface SyndFeed
        Parameters:
        description - the feed description to set, null if none.
      • getPublishedDate

        public Date getPublishedDate()
        Returns the feed published date.

        This method is a convenience method, it maps to the Dublin Core module date.

        Specified by:
        getPublishedDate in interface SyndFeed
        Returns:
        the feed published date, null if none.
      • setPublishedDate

        public void setPublishedDate​(Date publishedDate)
        Sets the feed published date.

        This method is a convenience method, it maps to the Dublin Core module date.

        Specified by:
        setPublishedDate in interface SyndFeed
        Parameters:
        publishedDate - the feed published date to set, null if none.
      • getCopyright

        public String getCopyright()
        Returns the feed copyright.

        This method is a convenience method, it maps to the Dublin Core module rights.

        Specified by:
        getCopyright in interface SyndFeed
        Returns:
        the feed copyright, null if none.
      • setCopyright

        public void setCopyright​(String copyright)
        Sets the feed copyright.

        This method is a convenience method, it maps to the Dublin Core module rights.

        Specified by:
        setCopyright in interface SyndFeed
        Parameters:
        copyright - the feed copyright to set, null if none.
      • getIcon

        public SyndImage getIcon()
        Returns the feed icon.

        Specified by:
        getIcon in interface SyndFeed
        Returns:
        the feed icon, null if none.
      • setIcon

        public void setIcon​(SyndImage icon)
        Sets the feed icon.

        Specified by:
        setIcon in interface SyndFeed
        Parameters:
        icon - the feed icon to set, null if none.
      • getImage

        public SyndImage getImage()
        Returns the feed image.

        Specified by:
        getImage in interface SyndFeed
        Returns:
        the feed image, null if none.
      • setImage

        public void setImage​(SyndImage image)
        Sets the feed image.

        Specified by:
        setImage in interface SyndFeed
        Parameters:
        image - the feed image to set, null if none.
      • getCategories

        public List<SyndCategory> getCategories()
        Returns the feed categories.

        This method is a convenience method, it maps to the Dublin Core module subjects.

        Specified by:
        getCategories in interface SyndFeed
        Returns:
        a list of SyndCategoryImpl elements with the feed categories, an empty list if none.
      • setCategories

        public void setCategories​(List<SyndCategory> categories)
        Sets the feed categories.

        This method is a convenience method, it maps to the Dublin Core module subjects.

        Specified by:
        setCategories in interface SyndFeed
        Parameters:
        categories - the list of SyndCategoryImpl elements with the feed categories to set, an empty list or null if none.
      • getEntries

        public List<SyndEntry> getEntries()
        Returns the feed entries.

        Specified by:
        getEntries in interface SyndFeed
        Returns:
        a list of SyndEntryImpl elements with the feed entries, an empty list if none.
      • setEntries

        public void setEntries​(List<SyndEntry> entries)
        Sets the feed entries.

        Specified by:
        setEntries in interface SyndFeed
        Parameters:
        entries - the list of SyndEntryImpl elements with the feed entries to set, an empty list or null if none.
      • getLanguage

        public String getLanguage()
        Returns the feed language.

        This method is a convenience method, it maps to the Dublin Core module language.

        Specified by:
        getLanguage in interface SyndFeed
        Returns:
        the feed language, null if none.
      • setLanguage

        public void setLanguage​(String language)
        Sets the feed language.

        This method is a convenience method, it maps to the Dublin Core module language.

        Specified by:
        setLanguage in interface SyndFeed
        Parameters:
        language - the feed language to set, null if none.
      • getModules

        public List<Module> getModules()
        Returns the feed modules.

        Specified by:
        getModules in interface Extendable
        Specified by:
        getModules in interface SyndFeed
        Returns:
        a list of ModuleImpl elements with the feed modules, an empty list if none.
      • setModules

        public void setModules​(List<Module> modules)
        Sets the feed modules.

        Specified by:
        setModules in interface Extendable
        Specified by:
        setModules in interface SyndFeed
        Parameters:
        modules - the list of ModuleImpl elements with the feed modules to set, an empty list or null if none.
      • getModule

        public Module getModule​(String uri)
        Returns the module identified by a given URI.

        Specified by:
        getModule in interface Extendable
        Specified by:
        getModule in interface SyndFeed
        Parameters:
        uri - the URI of the ModuleImpl.
        Returns:
        The module with the given URI, null if none.
      • getInterface

        public Class<SyndFeed> getInterface()
        Description copied from interface: CopyFrom
        Returns the interface the copyFrom works on.

        This is useful when dealing with properties that may have multiple implementations. For example, Module.

        Specified by:
        getInterface in interface CopyFrom
        Returns:
        the interface the copyFrom works on.
      • copyFrom

        public void copyFrom​(CopyFrom obj)
        Description copied from interface: CopyFrom
        Copies all the properties of the given bean into this one.

        Any existing properties in this bean are lost.

        This method is useful for moving from one implementation of a bean interface to another. For example from the default SyndFeed bean implementation to a Hibernate ready implementation.

        Specified by:
        copyFrom in interface CopyFrom
        Parameters:
        obj - the instance to copy properties from.
      • setLinks

        public void setLinks​(List<SyndLink> links)
        Set the links

        Specified by:
        setLinks in interface SyndFeed
        Parameters:
        links - The links to set.
      • getAuthors

        public List<SyndPerson> getAuthors()
        Description copied from interface: SyndFeed
        Returns the feed authors.

        For Atom feeds, this returns the authors as a list of SyndPerson objects, for RSS feeds this method is a convenience method, it maps to the Dublin Core module creator.

        Specified by:
        getAuthors in interface SyndFeed
        Returns:
        the feed authors, null if none.
      • setAuthors

        public void setAuthors​(List<SyndPerson> authors)
        Description copied from interface: SyndFeed
        Sets the feed authors.

        For Atom feeds, this sets the authors as a list of SyndPerson objects, for RSS feeds this method is a convenience method, it maps to the Dublin Core module creator.

        Specified by:
        setAuthors in interface SyndFeed
        Parameters:
        authors - the feed authors to set, null if none.
      • getAuthor

        public String getAuthor()
        Returns the feed author.

        This method is a convenience method, it maps to the Dublin Core module creator.

        Specified by:
        getAuthor in interface SyndFeed
        Returns:
        the feed author, null if none.
      • setAuthor

        public void setAuthor​(String author)
        Sets the feed author.

        This method is a convenience method, it maps to the Dublin Core module creator.

        Specified by:
        setAuthor in interface SyndFeed
        Parameters:
        author - the feed author to set, null if none.
      • getContributors

        public List<SyndPerson> getContributors()
        Description copied from interface: SyndFeed
        Returns the feed author.

        For Atom feeds, this returns the contributors as a list of SyndPerson objects

        Specified by:
        getContributors in interface SyndFeed
        Returns:
        the feed author, null if none.
      • setContributors

        public void setContributors​(List<SyndPerson> contributors)
        Description copied from interface: SyndFeed
        Sets the feed author.

        Returns contributors as a list of SyndPerson objects.

        Specified by:
        setContributors in interface SyndFeed
        Parameters:
        contributors - the feed contributors to set, null if none.
      • getForeignMarkup

        public List<org.jdom2.Element> getForeignMarkup()
        Returns foreign markup found at channel level.

        Specified by:
        getForeignMarkup in interface SyndFeed
        Returns:
        Opaque object to discourage use
      • setForeignMarkup

        public void setForeignMarkup​(List<org.jdom2.Element> foreignMarkup)
        Sets foreign markup found at channel level.

        Specified by:
        setForeignMarkup in interface SyndFeed
        Parameters:
        foreignMarkup - Opaque object to discourage use
      • isPreservingWireFeed

        public boolean isPreservingWireFeed()
        Specified by:
        isPreservingWireFeed in interface SyndFeed
        Returns:
        true if this SyndFeed preserves the WireFeed it was created from
      • getDocs

        public String getDocs()
        Description copied from interface: SyndFeed
        This tag should contain a URL that references a description of the channel.
        Specified by:
        getDocs in interface SyndFeed
        Returns:
        channel description URL or null
      • setDocs

        public void setDocs​(String docs)
        Description copied from interface: SyndFeed
        This tag should contain a URL that references a description of the channel.
        Specified by:
        setDocs in interface SyndFeed
        Parameters:
        docs - description URL
      • getGenerator

        public String getGenerator()
        Description copied from interface: SyndFeed
        A string indicating the program used to generate the channel.
        Specified by:
        getGenerator in interface SyndFeed
        Returns:
        string indicating the program or null
      • setGenerator

        public void setGenerator​(String generator)
        Description copied from interface: SyndFeed
        A string indicating the program used to generate the channel.
        Specified by:
        setGenerator in interface SyndFeed
        Parameters:
        generator - indicating the program
      • getManagingEditor

        public String getManagingEditor()
        Description copied from interface: SyndFeed
        The email address of the managing editor of the site, the person to contact for editorial inquiries.
        Specified by:
        getManagingEditor in interface SyndFeed
        Returns:
        email address of the managing editor or null
      • setManagingEditor

        public void setManagingEditor​(String managingEditor)
        Description copied from interface: SyndFeed
        The email address of the managing editor of the site, the person to contact for editorial inquiries.
        Specified by:
        setManagingEditor in interface SyndFeed
        Parameters:
        managingEditor - email address of the managing editor
      • getWebMaster

        public String getWebMaster()
        Description copied from interface: SyndFeed
        The email address of the webmaster for the site, the person to contact if there are technical problems with the channel.
        Specified by:
        getWebMaster in interface SyndFeed
        Returns:
        email address of the webmaster or null
      • setWebMaster

        public void setWebMaster​(String webMaster)
        Description copied from interface: SyndFeed
        The email address of the webmaster for the site, the person to contact if there are technical problems with the channel.
        Specified by:
        setWebMaster in interface SyndFeed
        Parameters:
        webMaster - email address of the webmaster
      • getStyleSheet

        public String getStyleSheet()
        Description copied from interface: SyndFeed
        URL of XSL-Stylesheet.
        Specified by:
        getStyleSheet in interface SyndFeed
        Returns:
        styleSheet URL or null
      • setStyleSheet

        public void setStyleSheet​(String styleSheet)
        Description copied from interface: SyndFeed
        URL of XSL-Stylesheet.
        Specified by:
        setStyleSheet in interface SyndFeed
        Parameters:
        styleSheet - URL or null