Package com.soffid.iam.bpm.api
Class Comment
- java.lang.Object
-
- com.soffid.iam.bpm.api.Comment
-
- All Implemented Interfaces:
Serializable
public class Comment extends Object implements Serializable
ValueObject Comment- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActor()
Gets value for attribute actorString
getMessage()
Gets value for attribute messageString
getNode()
Gets value for attribute nodeDate
getTime()
Gets value for attribute timevoid
setActor(String actor)
Sets value for attribute actorvoid
setMessage(String message)
Sets value for attribute messagevoid
setNode(String node)
Sets value for attribute nodevoid
setTime(Date time)
Sets value for attribute timestatic Comment
toComment(Comment vo)
Creates a Comment value object based on a Comment object.static void
toComment(Comment source, Comment target)
Updates a Comment value object based on a Comment object.static Comment[]
toCommentArray(Comment[] source)
Creates a Comment array on a Comment array.static AsyncList<Comment>
toCommentAsyncList(AsyncList<Comment> source)
Creates a Comment asynclist on a Comment collection.static PagedResult<Comment>
toCommentList(PagedResult<Comment> source)
Creates a Comment pagedResult on a Comment collection.static List<Comment>
toCommentList(Collection<Comment> source)
Creates a Comment list on a Comment collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getMessage
public String getMessage()
Gets value for attribute message
-
setMessage
public void setMessage(String message)
Sets value for attribute message
-
getActor
public String getActor()
Gets value for attribute actor
-
setActor
public void setActor(String actor)
Sets value for attribute actor
-
getNode
public String getNode()
Gets value for attribute node
-
setNode
public void setNode(String node)
Sets value for attribute node
-
getTime
public Date getTime()
Gets value for attribute time
-
setTime
public void setTime(Date time)
Sets value for attribute time
-
toString
public String toString()
Returns a string representation of the value object.
-
toComment
public static Comment toComment(Comment vo)
Creates a Comment value object based on a Comment object.
-
toCommentList
public static List<Comment> toCommentList(Collection<Comment> source)
Creates a Comment list on a Comment collection.
-
toCommentList
public static PagedResult<Comment> toCommentList(PagedResult<Comment> source)
Creates a Comment pagedResult on a Comment collection.
-
toCommentAsyncList
public static AsyncList<Comment> toCommentAsyncList(AsyncList<Comment> source)
Creates a Comment asynclist on a Comment collection.
-
toCommentArray
public static Comment[] toCommentArray(Comment[] source)
Creates a Comment array on a Comment array.
-
-