Show MessageBean.java syntax highlighted
/*
* org.riverock.forum - Forum portlet
*
* Copyright (C) 2006, Riverock Software, All Rights Reserved.
*
* Riverock - The Open-source Java Development Community
* http://www.riverock.org
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.riverock.forum.bean;
/**
* @author SMaslyukov
* Date: 29.04.2005
* Time: 21:09:21
* $Id: MessageBean.java 1119 2006-12-02 22:35:13Z serg_main $
*/
public class MessageBean {
private String content = null;
private long messageId;
private Long forumId;
private Long topicId;
private String editMessageUrl = null;
private String forumName = null;
private String topicName = null;
private long iconId;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public long getMessageId() {
return messageId;
}
public void setMessageId(long messageId) {
this.messageId = messageId;
}
public void setForumId(Long forumId) {
this.forumId = forumId;
}
public Long getForumId() {
return forumId;
}
public String getEditMessageUrl() {
return editMessageUrl;
}
public void setEditMessageUrl(String editMessageUrl) {
this.editMessageUrl = editMessageUrl;
}
public Long getTopicId() {
return topicId;
}
public void setTopicId(Long topicId) {
this.topicId = topicId;
}
public String getForumName() {
return forumName;
}
public void setForumName(String forumName) {
this.forumName = forumName;
}
public String getTopicName() {
return topicName;
}
public void setTopicName(String topicName) {
this.topicName = topicName;
}
public long getIconId() {
return iconId;
}
public void setIconId(long iconId) {
this.iconId = iconId;
}
}
See more files for this project here