1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.messageboards.model;
16  
17  import com.liferay.portal.kernel.annotation.AutoEscape;
18  import com.liferay.portal.kernel.exception.SystemException;
19  import com.liferay.portal.model.BaseModel;
20  import com.liferay.portal.service.ServiceContext;
21  
22  import com.liferay.portlet.expando.model.ExpandoBridge;
23  
24  import java.io.Serializable;
25  
26  import java.util.Date;
27  
28  /**
29   * <a href="MBMessageModel.java.html"><b><i>View Source</i></b></a>
30   *
31   * <p>
32   * ServiceBuilder generated this class. Modifications in this class will be
33   * overwritten the next time is generated.
34   * </p>
35   *
36   * <p>
37   * This interface is a model that represents the MBMessage table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       MBMessage
43   * @see       com.liferay.portlet.messageboards.model.impl.MBMessageImpl
44   * @see       com.liferay.portlet.messageboards.model.impl.MBMessageModelImpl
45   * @generated
46   */
47  public interface MBMessageModel extends BaseModel<MBMessage> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      @AutoEscape
53      public String getUuid();
54  
55      public void setUuid(String uuid);
56  
57      public long getMessageId();
58  
59      public void setMessageId(long messageId);
60  
61      public long getGroupId();
62  
63      public void setGroupId(long groupId);
64  
65      public long getCompanyId();
66  
67      public void setCompanyId(long companyId);
68  
69      public long getUserId();
70  
71      public void setUserId(long userId);
72  
73      public String getUserUuid() throws SystemException;
74  
75      public void setUserUuid(String userUuid);
76  
77      @AutoEscape
78      public String getUserName();
79  
80      public void setUserName(String userName);
81  
82      public Date getCreateDate();
83  
84      public void setCreateDate(Date createDate);
85  
86      public Date getModifiedDate();
87  
88      public void setModifiedDate(Date modifiedDate);
89  
90      public String getClassName();
91  
92      public long getClassNameId();
93  
94      public void setClassNameId(long classNameId);
95  
96      public long getClassPK();
97  
98      public void setClassPK(long classPK);
99  
100     public long getCategoryId();
101 
102     public void setCategoryId(long categoryId);
103 
104     public long getThreadId();
105 
106     public void setThreadId(long threadId);
107 
108     public long getParentMessageId();
109 
110     public void setParentMessageId(long parentMessageId);
111 
112     @AutoEscape
113     public String getSubject();
114 
115     public void setSubject(String subject);
116 
117     @AutoEscape
118     public String getBody();
119 
120     public void setBody(String body);
121 
122     public boolean getAttachments();
123 
124     public boolean isAttachments();
125 
126     public void setAttachments(boolean attachments);
127 
128     public boolean getAnonymous();
129 
130     public boolean isAnonymous();
131 
132     public void setAnonymous(boolean anonymous);
133 
134     public double getPriority();
135 
136     public void setPriority(double priority);
137 
138     public boolean getAllowPingbacks();
139 
140     public boolean isAllowPingbacks();
141 
142     public void setAllowPingbacks(boolean allowPingbacks);
143 
144     public int getStatus();
145 
146     public void setStatus(int status);
147 
148     public long getStatusByUserId();
149 
150     public void setStatusByUserId(long statusByUserId);
151 
152     public String getStatusByUserUuid() throws SystemException;
153 
154     public void setStatusByUserUuid(String statusByUserUuid);
155 
156     @AutoEscape
157     public String getStatusByUserName();
158 
159     public void setStatusByUserName(String statusByUserName);
160 
161     public Date getStatusDate();
162 
163     public void setStatusDate(Date statusDate);
164 
165     public boolean isApproved();
166 
167     public boolean isDraft();
168 
169     public boolean isExpired();
170 
171     public boolean isPending();
172 
173     public MBMessage toEscapedModel();
174 
175     public boolean isNew();
176 
177     public boolean setNew(boolean n);
178 
179     public boolean isCachedModel();
180 
181     public void setCachedModel(boolean cachedModel);
182 
183     public boolean isEscapedModel();
184 
185     public void setEscapedModel(boolean escapedModel);
186 
187     public Serializable getPrimaryKeyObj();
188 
189     public ExpandoBridge getExpandoBridge();
190 
191     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
192 
193     public Object clone();
194 
195     public int compareTo(MBMessage mbMessage);
196 
197     public int hashCode();
198 
199     public String toString();
200 
201     public String toXmlString();
202 }