1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.messageboards.model;
16  
17  import com.liferay.portal.SystemException;
18  import com.liferay.portal.kernel.annotation.AutoEscape;
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="MBMailingListModel.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 MBMailingList table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       MBMailingList
43   * @see       com.liferay.portlet.messageboards.model.impl.MBMailingListImpl
44   * @see       com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl
45   * @generated
46   */
47  public interface MBMailingListModel extends BaseModel<MBMailingList> {
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 getMailingListId();
58  
59      public void setMailingListId(long mailingListId);
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 long getCategoryId();
91  
92      public void setCategoryId(long categoryId);
93  
94      @AutoEscape
95      public String getEmailAddress();
96  
97      public void setEmailAddress(String emailAddress);
98  
99      @AutoEscape
100     public String getInProtocol();
101 
102     public void setInProtocol(String inProtocol);
103 
104     @AutoEscape
105     public String getInServerName();
106 
107     public void setInServerName(String inServerName);
108 
109     public int getInServerPort();
110 
111     public void setInServerPort(int inServerPort);
112 
113     public boolean getInUseSSL();
114 
115     public boolean isInUseSSL();
116 
117     public void setInUseSSL(boolean inUseSSL);
118 
119     @AutoEscape
120     public String getInUserName();
121 
122     public void setInUserName(String inUserName);
123 
124     @AutoEscape
125     public String getInPassword();
126 
127     public void setInPassword(String inPassword);
128 
129     public int getInReadInterval();
130 
131     public void setInReadInterval(int inReadInterval);
132 
133     @AutoEscape
134     public String getOutEmailAddress();
135 
136     public void setOutEmailAddress(String outEmailAddress);
137 
138     public boolean getOutCustom();
139 
140     public boolean isOutCustom();
141 
142     public void setOutCustom(boolean outCustom);
143 
144     @AutoEscape
145     public String getOutServerName();
146 
147     public void setOutServerName(String outServerName);
148 
149     public int getOutServerPort();
150 
151     public void setOutServerPort(int outServerPort);
152 
153     public boolean getOutUseSSL();
154 
155     public boolean isOutUseSSL();
156 
157     public void setOutUseSSL(boolean outUseSSL);
158 
159     @AutoEscape
160     public String getOutUserName();
161 
162     public void setOutUserName(String outUserName);
163 
164     @AutoEscape
165     public String getOutPassword();
166 
167     public void setOutPassword(String outPassword);
168 
169     public boolean getActive();
170 
171     public boolean isActive();
172 
173     public void setActive(boolean active);
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(MBMailingList mbMailingList);
196 
197     public int hashCode();
198 
199     public MBMailingList toEscapedModel();
200 
201     public String toString();
202 
203     public String toXmlString();
204 }