1
14
15 package com.liferay.portlet.messageboards.model;
16
17 import com.liferay.portal.SystemException;
18 import com.liferay.portal.model.BaseModel;
19
20 import java.io.Serializable;
21
22 import java.util.Date;
23
24
43 public interface MBThreadModel extends BaseModel<MBThread> {
44 public long getPrimaryKey();
45
46 public void setPrimaryKey(long pk);
47
48 public long getThreadId();
49
50 public void setThreadId(long threadId);
51
52 public long getGroupId();
53
54 public void setGroupId(long groupId);
55
56 public long getCategoryId();
57
58 public void setCategoryId(long categoryId);
59
60 public long getRootMessageId();
61
62 public void setRootMessageId(long rootMessageId);
63
64 public int getMessageCount();
65
66 public void setMessageCount(int messageCount);
67
68 public int getViewCount();
69
70 public void setViewCount(int viewCount);
71
72 public long getLastPostByUserId();
73
74 public void setLastPostByUserId(long lastPostByUserId);
75
76 public String getLastPostByUserUuid() throws SystemException;
77
78 public void setLastPostByUserUuid(String lastPostByUserUuid);
79
80 public Date getLastPostDate();
81
82 public void setLastPostDate(Date lastPostDate);
83
84 public double getPriority();
85
86 public void setPriority(double priority);
87
88 public MBThread toEscapedModel();
89
90 public boolean isNew();
91
92 public boolean setNew(boolean n);
93
94 public boolean isCachedModel();
95
96 public void setCachedModel(boolean cachedModel);
97
98 public boolean isEscapedModel();
99
100 public void setEscapedModel(boolean escapedModel);
101
102 public Serializable getPrimaryKeyObj();
103
104 public Object clone();
105
106 public int compareTo(MBThread mbThread);
107
108 public int hashCode();
109
110 public String toString();
111
112 public String toXmlString();
113 }