Package lumis.service.userpost
Class UserPost
- java.lang.Object
-
- lumis.service.userpost.UserPost
-
public class UserPost extends 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 String
getDocument()
Returns the user post attached document identifier.String
getId()
Returns the user post identifier.String
getLink()
Returns the user post attached link.String
getLinkmetainfo()
Returns the user post attached link meta information.String
getMedia()
Returns the user post attached media identifier.String
getPost()
Returns the user post text.int
getPriority()
Returns the user post priority used for ordering.String
getTitle()
Returns the user post title.void
setDocument(String document)
Sets the user post attached document.void
setId(String id)
Sets the user post identifier.void
setLink(String link)
Sets the user post attached link.void
setLinkmetainfo(String linkmetainfo)
Sets the user post attached link meta information.void
setMedia(String media)
Sets the user post attached media identifier.void
setPost(String post)
Sets the user post text.void
setPriority(int priority)
Sets the user post priority.void
setTitle(String title)
Sets the user post title.
-
-
-
Method Detail
-
getId
public String getId()
Returns the user post identifier.- Returns:
- the user post identifier.
- Since:
- 10.1.0
-
setId
public void setId(String id)
Sets the user post identifier.- Parameters:
id
- the user post identifier to set.- Since:
- 10.1.0
-
getTitle
public String getTitle()
Returns the user post title.- Returns:
- the user post title.
- Since:
- 10.1.0
-
setTitle
public void setTitle(String title)
Sets the user post title.- Parameters:
title
- the title to set.- Since:
- 10.1.0
-
getPost
public String getPost()
Returns the user post text.- Returns:
- the user post text.
- Since:
- 10.1.0
-
setPost
public void setPost(String post)
Sets the user post text.- Parameters:
post
- the text to set the post.- Since:
- 10.1.0
-
getLink
public String getLink()
Returns the user post attached link.- Returns:
- the user post attached link.
- Since:
- 10.1.0
-
setLink
public void setLink(String link)
Sets the user post attached link.- Parameters:
link
- the link to set.- Since:
- 10.1.0
-
getLinkmetainfo
public 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(String linkmetainfo)
Sets the user post attached link meta information.- Parameters:
linkmetainfo
- link meta information to set.- Since:
- 10.1.0
-
getMedia
public String getMedia()
Returns the user post attached media identifier.- Returns:
- the user post attached media identifier.
- Since:
- 10.1.0
-
setMedia
public void setMedia(String media)
Sets the user post attached media identifier.- Parameters:
media
- media identifier to set.- Since:
- 10.1.0
-
getDocument
public String getDocument()
Returns the user post attached document identifier.- Returns:
- the user post attached document identifier.
- Since:
- 10.1.0
-
setDocument
public void setDocument(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
-
-