com.ibm.ram.common.data
Class AssetFeedback
java.lang.Object
com.ibm.ram.common.data.AssetFeedback
- Direct Known Subclasses:
- RAMAssetFeedback
public class AssetFeedback
- extends java.lang.Object
Represents a single user's feedback about an asset.
The feedback includes their comments and rating.
- Since:
- 7.1
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AssetFeedback
public AssetFeedback()
setId
public void setId(long id)
- Parameters:
id - The id to set.- Since:
- 7.1
getId
public long getId()
- Returns:
- Returns the id.
- Since:
- 7.1
isAnonymous
public boolean isAnonymous()
- Returns:
- Returns the anonymous.
- Since:
- 7.1
setAnonymous
public void setAnonymous(boolean anonymous)
- Parameters:
anonymous - The anonymous to set.- Since:
- 7.1
getComment
public java.lang.String getComment()
- Returns:
- Returns the comment.
- Since:
- 7.1
setComment
public void setComment(java.lang.String comment)
- Parameters:
comment - The comment to set.- Since:
- 7.1
getRating
public int getRating()
- Returns:
- Returns the rating.
- Since:
- 7.1
setRating
public void setRating(int rating)
- Parameters:
rating - The rating to set.- Since:
- 7.1
getTimestamp
public long getTimestamp()
- Returns:
- Returns the timestamp.
- Since:
- 7.1
setTimestamp
public void setTimestamp(long timestamp)
- Parameters:
timestamp - The timestamp to set.- Since:
- 7.1
getUser
public UserInformation getUser()
- Returns:
- Returns the user.
- Since:
- 7.1
setUser
public void setUser(UserInformation user)
- Parameters:
user - The user to set.- Since:
- 7.1