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.announcements.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="AnnouncementsEntryModel.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 AnnouncementsEntry table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       AnnouncementsEntry
43   * @see       com.liferay.portlet.announcements.model.impl.AnnouncementsEntryImpl
44   * @see       com.liferay.portlet.announcements.model.impl.AnnouncementsEntryModelImpl
45   * @generated
46   */
47  public interface AnnouncementsEntryModel extends BaseModel<AnnouncementsEntry> {
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 getEntryId();
58  
59      public void setEntryId(long entryId);
60  
61      public long getCompanyId();
62  
63      public void setCompanyId(long companyId);
64  
65      public long getUserId();
66  
67      public void setUserId(long userId);
68  
69      public String getUserUuid() throws SystemException;
70  
71      public void setUserUuid(String userUuid);
72  
73      @AutoEscape
74      public String getUserName();
75  
76      public void setUserName(String userName);
77  
78      public Date getCreateDate();
79  
80      public void setCreateDate(Date createDate);
81  
82      public Date getModifiedDate();
83  
84      public void setModifiedDate(Date modifiedDate);
85  
86      public String getClassName();
87  
88      public long getClassNameId();
89  
90      public void setClassNameId(long classNameId);
91  
92      public long getClassPK();
93  
94      public void setClassPK(long classPK);
95  
96      @AutoEscape
97      public String getTitle();
98  
99      public void setTitle(String title);
100 
101     @AutoEscape
102     public String getContent();
103 
104     public void setContent(String content);
105 
106     @AutoEscape
107     public String getUrl();
108 
109     public void setUrl(String url);
110 
111     @AutoEscape
112     public String getType();
113 
114     public void setType(String type);
115 
116     public Date getDisplayDate();
117 
118     public void setDisplayDate(Date displayDate);
119 
120     public Date getExpirationDate();
121 
122     public void setExpirationDate(Date expirationDate);
123 
124     public int getPriority();
125 
126     public void setPriority(int priority);
127 
128     public boolean getAlert();
129 
130     public boolean isAlert();
131 
132     public void setAlert(boolean alert);
133 
134     public AnnouncementsEntry toEscapedModel();
135 
136     public boolean isNew();
137 
138     public boolean setNew(boolean n);
139 
140     public boolean isCachedModel();
141 
142     public void setCachedModel(boolean cachedModel);
143 
144     public boolean isEscapedModel();
145 
146     public void setEscapedModel(boolean escapedModel);
147 
148     public Serializable getPrimaryKeyObj();
149 
150     public ExpandoBridge getExpandoBridge();
151 
152     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
153 
154     public Object clone();
155 
156     public int compareTo(AnnouncementsEntry announcementsEntry);
157 
158     public int hashCode();
159 
160     public String toString();
161 
162     public String toXmlString();
163 }