Class SyndCategoryImpl

    • Constructor Detail

      • SyndCategoryImpl

        public SyndCategoryImpl()
    • Method Detail

      • 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.
      • getName

        public String getName()
        Returns the category name.

        Specified by:
        getName in interface SyndCategory
        Returns:
        the category name, null if none.
      • setName

        public void setName​(String name)
        Sets the category name.

        Specified by:
        setName in interface SyndCategory
        Parameters:
        name - the category name to set, null if none.
      • getTaxonomyUri

        public String getTaxonomyUri()
        Returns the category taxonomy URI.

        Specified by:
        getTaxonomyUri in interface SyndCategory
        Returns:
        the category taxonomy URI, null if none.
      • setTaxonomyUri

        public void setTaxonomyUri​(String taxonomyUri)
        Sets the category taxonomy URI.

        Specified by:
        setTaxonomyUri in interface SyndCategory
        Parameters:
        taxonomyUri - the category taxonomy URI to set, null if none.
      • getInterface

        public Class<? extends CopyFrom> 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.