Groovy Documentation

com.ace.mws
[Groovy] Class Message

java.lang.Object
  com.ace.mws.Message

class Message

Field Summary
private String author

The author of the message.

private Date creationTime

The time the message was created in epoch time.

private Date expireTime

The time the message will be deleted in epoch time.

private Long id

private Integer index

The index of the message relative to other messages in Moab's memory.

private String message

The comment information itself.

private Integer messageCount

The number of times this message has been displayed.

private Double priority

An optional priority that can be attached to the comment.

private static long serialVersionUID

 
Constructor Summary
Message()

 
Method Summary
String getAuthor()

The author of the message.

Date getCreationTime()

The time the message was created in epoch time.

Date getExpireTime()

The time the message will be deleted in epoch time.

Long getId()

Integer getIndex()

The index of the message relative to other messages in Moab's memory.

String getMessage()

The comment information itself.

Integer getMessageCount()

The number of times this message has been displayed.

Double getPriority()

An optional priority that can be attached to the comment.

void setAuthor(String author)

The author of the message.

void setCreationTime(Date creationTime)

The time the message was created in epoch time.

void setExpireTime(Date expireTime)

The time the message will be deleted in epoch time.

void setId(Long id)

void setIndex(Integer index)

The index of the message relative to other messages in Moab's memory.

void setMessage(String message)

The comment information itself.

void setMessageCount(Integer messageCount)

The number of times this message has been displayed.

void setPriority(Double priority)

An optional priority that can be attached to the comment.

String toString()

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

author

private String author
The author of the message.


creationTime

private Date creationTime
The time the message was created in epoch time.


expireTime

private Date expireTime
The time the message will be deleted in epoch time.


id

private Long id


index

private Integer index
The index of the message relative to other messages in Moab's memory. This variable cannot be named "index" or hibernate will generate invalid SQL when communicating with MySQL.


message

private String message
The comment information itself.


messageCount

private Integer messageCount
The number of times this message has been displayed.


priority

private Double priority
An optional priority that can be attached to the comment.


serialVersionUID

private static final long serialVersionUID


 
Constructor Detail

Message

Message()


 
Method Detail

getAuthor

String getAuthor()
The author of the message.


getCreationTime

Date getCreationTime()
The time the message was created in epoch time.


getExpireTime

Date getExpireTime()
The time the message will be deleted in epoch time.


getId

Long getId()


getIndex

Integer getIndex()
The index of the message relative to other messages in Moab's memory. This variable cannot be named "index" or hibernate will generate invalid SQL when communicating with MySQL.


getMessage

String getMessage()
The comment information itself.


getMessageCount

Integer getMessageCount()
The number of times this message has been displayed.


getPriority

Double getPriority()
An optional priority that can be attached to the comment.


setAuthor

void setAuthor(String author)
The author of the message.


setCreationTime

void setCreationTime(Date creationTime)
The time the message was created in epoch time.


setExpireTime

void setExpireTime(Date expireTime)
The time the message will be deleted in epoch time.


setId

void setId(Long id)


setIndex

void setIndex(Integer index)
The index of the message relative to other messages in Moab's memory. This variable cannot be named "index" or hibernate will generate invalid SQL when communicating with MySQL.


setMessage

void setMessage(String message)
The comment information itself.


setMessageCount

void setMessageCount(Integer messageCount)
The number of times this message has been displayed.


setPriority

void setPriority(Double priority)
An optional priority that can be attached to the comment.


toString

String toString()


 

Groovy Documentation