com.softwarereality.forum
Interface Message

All Superinterfaces:
java.lang.Cloneable
All Known Implementing Classes:
MessageBean

public interface Message
extends java.lang.Cloneable

THIS FILE IS CODE GENERATED. Message.java

See Also:
MessageHome, MessageSession, MessageValidator, MessageBean, LazyMessageBean

Method Summary
 java.lang.Object clone()
          Clone bean without throwing an Exception.
 java.util.Date getCreateDateTime()
          Get the Create Date Time.
 Forum getForum()
          Get the Forum.
 java.lang.String getForumUser()
          Get the Forum User.
 java.lang.String getIp()
          Get the Ip.
 java.lang.String getLocation()
          Get the Location.
 java.lang.String getMsgBody()
          Get the Msg Body.
 java.lang.Integer getMsgID()
          Get the Msg I D.
 java.lang.String getMsgTitle()
          Get the Msg Title.
 void setCreateDateTime(java.util.Date createDateTime)
          Set the Create Date Time.
 void setForum(Forum forum)
          Set the Forum.
 void setForumUser(java.lang.String forumUser)
          Set the Forum User.
 void setIp(java.lang.String ip)
          Set the Ip.
 void setLocation(java.lang.String location)
          Set the Location.
 void setMsgBody(java.lang.String msgBody)
          Set the Msg Body.
 void setMsgID(java.lang.Integer msgID)
          Set the Msg I D.
 void setMsgTitle(java.lang.String msgTitle)
          Set the Msg Title.
 

Method Detail

getMsgID

public java.lang.Integer getMsgID()
Get the Msg I D.

Returns:
Integer or null if it has not been set.

setMsgID

public void setMsgID(java.lang.Integer msgID)
              throws ValidationException
Set the Msg I D.

Parameters:
msgID - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getForum

public Forum getForum()
Get the Forum.

Returns:
Forum or a default value of null if it has not been set.

setForum

public void setForum(Forum forum)
              throws ValidationException
Set the Forum.

Parameters:
forum - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getForumUser

public java.lang.String getForumUser()
Get the Forum User.

Returns:
String or null if it has not been set.

setForumUser

public void setForumUser(java.lang.String forumUser)
                  throws ValidationException
Set the Forum User.

Parameters:
forumUser - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getLocation

public java.lang.String getLocation()
Get the Location.

Returns:
String or null if it has not been set.

setLocation

public void setLocation(java.lang.String location)
                 throws ValidationException
Set the Location.

Parameters:
location - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getMsgTitle

public java.lang.String getMsgTitle()
Get the Msg Title.

Returns:
String or null if it has not been set.

setMsgTitle

public void setMsgTitle(java.lang.String msgTitle)
                 throws ValidationException
Set the Msg Title.

Parameters:
msgTitle - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getMsgBody

public java.lang.String getMsgBody()
Get the Msg Body.

Returns:
String or null if it has not been set.

setMsgBody

public void setMsgBody(java.lang.String msgBody)
                throws ValidationException
Set the Msg Body.

Parameters:
msgBody - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getIp

public java.lang.String getIp()
Get the Ip.

Returns:
String or null if it has not been set.

setIp

public void setIp(java.lang.String ip)
           throws ValidationException
Set the Ip.

Parameters:
ip - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

getCreateDateTime

public java.util.Date getCreateDateTime()
Get the Create Date Time.

Returns:
java.util.Date or a default value of new Date() if it has not been set.

setCreateDateTime

public void setCreateDateTime(java.util.Date createDateTime)
                       throws ValidationException
Set the Create Date Time.

Parameters:
createDateTime - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
MessageValidator

clone

public java.lang.Object clone()
Clone bean without throwing an Exception.