Class UserPost


  • public class UserPost
    extends java.lang.Object
    A user post entity.
    Since:
    10.1.0
    Version:
    $Revision: 19963 $ $Date: 2017-02-21 19:28:29 -0300 (Tue, 21 Feb 2017) $
    • Constructor Summary

      Constructors 
      Constructor Description
      UserPost()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDocument()
      Returns the user post attached document identifier.
      java.lang.String getId()
      Returns the user post identifier.
      java.lang.String getLink()
      Returns the user post attached link.
      java.lang.String getLinkmetainfo()
      Returns the user post attached link meta information.
      java.lang.String getMedia()
      Returns the user post attached media identifier.
      java.lang.String getPost()
      Returns the user post text.
      int getPriority()
      Returns the user post priority used for ordering.
      java.lang.String getTitle()
      Returns the user post title.
      void setDocument​(java.lang.String document)
      Sets the user post attached document.
      void setId​(java.lang.String id)
      Sets the user post identifier.
      void setLink​(java.lang.String link)
      Sets the user post attached link.
      void setLinkmetainfo​(java.lang.String linkmetainfo)
      Sets the user post attached link meta information.
      void setMedia​(java.lang.String media)
      Sets the user post attached media identifier.
      void setPost​(java.lang.String post)
      Sets the user post text.
      void setPriority​(int priority)
      Sets the user post priority.
      void setTitle​(java.lang.String title)
      Sets the user post title.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UserPost

        public UserPost()
    • Method Detail

      • getId

        public java.lang.String getId()
        Returns the user post identifier.
        Returns:
        the user post identifier.
        Since:
        10.1.0
      • setId

        public void setId​(java.lang.String id)
        Sets the user post identifier.
        Parameters:
        id - the user post identifier to set.
        Since:
        10.1.0
      • getTitle

        public java.lang.String getTitle()
        Returns the user post title.
        Returns:
        the user post title.
        Since:
        10.1.0
      • setTitle

        public void setTitle​(java.lang.String title)
        Sets the user post title.
        Parameters:
        title - the title to set.
        Since:
        10.1.0
      • getPost

        public java.lang.String getPost()
        Returns the user post text.
        Returns:
        the user post text.
        Since:
        10.1.0
      • setPost

        public void setPost​(java.lang.String post)
        Sets the user post text.
        Parameters:
        post - the text to set the post.
        Since:
        10.1.0
      • getLink

        public java.lang.String getLink()
        Returns the user post attached link.
        Returns:
        the user post attached link.
        Since:
        10.1.0
      • setLink

        public void setLink​(java.lang.String link)
        Sets the user post attached link.
        Parameters:
        link - the link to set.
        Since:
        10.1.0
      • getLinkmetainfo

        public java.lang.String getLinkmetainfo()
        Returns the user post attached link meta information.
        Returns:
        the user post attached link meta information.
        Since:
        10.1.0
      • setLinkmetainfo

        public void setLinkmetainfo​(java.lang.String linkmetainfo)
        Sets the user post attached link meta information.
        Parameters:
        linkmetainfo - link meta information to set.
        Since:
        10.1.0
      • getMedia

        public java.lang.String getMedia()
        Returns the user post attached media identifier.
        Returns:
        the user post attached media identifier.
        Since:
        10.1.0
      • setMedia

        public void setMedia​(java.lang.String media)
        Sets the user post attached media identifier.
        Parameters:
        media - media identifier to set.
        Since:
        10.1.0
      • getDocument

        public java.lang.String getDocument()
        Returns the user post attached document identifier.
        Returns:
        the user post attached document identifier.
        Since:
        10.1.0
      • setDocument

        public void setDocument​(java.lang.String document)
        Sets the user post attached document.
        Parameters:
        document - the document to set.
        Since:
        10.1.0
      • getPriority

        public int getPriority()
        Returns the user post priority used for ordering.
        Returns:
        the user post priority.
        Since:
        10.1.0
      • setPriority

        public void setPriority​(int priority)
        Sets the user post priority.
        Parameters:
        priority - the priority to set.
        Since:
        10.1.0