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.journal.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="JournalFeedModel.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 JournalFeed table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       JournalFeed
43   * @see       com.liferay.portlet.journal.model.impl.JournalFeedImpl
44   * @see       com.liferay.portlet.journal.model.impl.JournalFeedModelImpl
45   * @generated
46   */
47  public interface JournalFeedModel extends BaseModel<JournalFeed> {
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 getId();
58  
59      public void setId(long id);
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 getFeedId();
91  
92      public void setFeedId(String feedId);
93  
94      @AutoEscape
95      public String getName();
96  
97      public void setName(String name);
98  
99      @AutoEscape
100     public String getDescription();
101 
102     public void setDescription(String description);
103 
104     @AutoEscape
105     public String getType();
106 
107     public void setType(String type);
108 
109     public String getStructureId();
110 
111     public void setStructureId(String structureId);
112 
113     public String getTemplateId();
114 
115     public void setTemplateId(String templateId);
116 
117     @AutoEscape
118     public String getRendererTemplateId();
119 
120     public void setRendererTemplateId(String rendererTemplateId);
121 
122     public int getDelta();
123 
124     public void setDelta(int delta);
125 
126     @AutoEscape
127     public String getOrderByCol();
128 
129     public void setOrderByCol(String orderByCol);
130 
131     @AutoEscape
132     public String getOrderByType();
133 
134     public void setOrderByType(String orderByType);
135 
136     @AutoEscape
137     public String getTargetLayoutFriendlyUrl();
138 
139     public void setTargetLayoutFriendlyUrl(String targetLayoutFriendlyUrl);
140 
141     @AutoEscape
142     public String getTargetPortletId();
143 
144     public void setTargetPortletId(String targetPortletId);
145 
146     @AutoEscape
147     public String getContentField();
148 
149     public void setContentField(String contentField);
150 
151     @AutoEscape
152     public String getFeedType();
153 
154     public void setFeedType(String feedType);
155 
156     public double getFeedVersion();
157 
158     public void setFeedVersion(double feedVersion);
159 
160     public boolean isNew();
161 
162     public boolean setNew(boolean n);
163 
164     public boolean isCachedModel();
165 
166     public void setCachedModel(boolean cachedModel);
167 
168     public boolean isEscapedModel();
169 
170     public void setEscapedModel(boolean escapedModel);
171 
172     public Serializable getPrimaryKeyObj();
173 
174     public ExpandoBridge getExpandoBridge();
175 
176     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
177 
178     public Object clone();
179 
180     public int compareTo(JournalFeed journalFeed);
181 
182     public int hashCode();
183 
184     public JournalFeed toEscapedModel();
185 
186     public String toString();
187 
188     public String toXmlString();
189 }