001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.journal.model;
016    
017    import com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.BaseModel;
020    import com.liferay.portal.service.ServiceContext;
021    
022    import com.liferay.portlet.expando.model.ExpandoBridge;
023    
024    import java.io.Serializable;
025    
026    import java.util.Date;
027    
028    /**
029     * <p>
030     * This interface is a model that represents the JournalFeed table in the
031     * database.
032     * </p>
033     *
034     * @author    Brian Wing Shun Chan
035     * @see       JournalFeed
036     * @see       com.liferay.portlet.journal.model.impl.JournalFeedImpl
037     * @see       com.liferay.portlet.journal.model.impl.JournalFeedModelImpl
038     * @generated
039     */
040    public interface JournalFeedModel extends BaseModel<JournalFeed> {
041            public long getPrimaryKey();
042    
043            public void setPrimaryKey(long pk);
044    
045            @AutoEscape
046            public String getUuid();
047    
048            public void setUuid(String uuid);
049    
050            public long getId();
051    
052            public void setId(long id);
053    
054            public long getGroupId();
055    
056            public void setGroupId(long groupId);
057    
058            public long getCompanyId();
059    
060            public void setCompanyId(long companyId);
061    
062            public long getUserId();
063    
064            public void setUserId(long userId);
065    
066            public String getUserUuid() throws SystemException;
067    
068            public void setUserUuid(String userUuid);
069    
070            @AutoEscape
071            public String getUserName();
072    
073            public void setUserName(String userName);
074    
075            public Date getCreateDate();
076    
077            public void setCreateDate(Date createDate);
078    
079            public Date getModifiedDate();
080    
081            public void setModifiedDate(Date modifiedDate);
082    
083            public String getFeedId();
084    
085            public void setFeedId(String feedId);
086    
087            @AutoEscape
088            public String getName();
089    
090            public void setName(String name);
091    
092            @AutoEscape
093            public String getDescription();
094    
095            public void setDescription(String description);
096    
097            @AutoEscape
098            public String getType();
099    
100            public void setType(String type);
101    
102            public String getStructureId();
103    
104            public void setStructureId(String structureId);
105    
106            public String getTemplateId();
107    
108            public void setTemplateId(String templateId);
109    
110            @AutoEscape
111            public String getRendererTemplateId();
112    
113            public void setRendererTemplateId(String rendererTemplateId);
114    
115            public int getDelta();
116    
117            public void setDelta(int delta);
118    
119            @AutoEscape
120            public String getOrderByCol();
121    
122            public void setOrderByCol(String orderByCol);
123    
124            @AutoEscape
125            public String getOrderByType();
126    
127            public void setOrderByType(String orderByType);
128    
129            @AutoEscape
130            public String getTargetLayoutFriendlyUrl();
131    
132            public void setTargetLayoutFriendlyUrl(String targetLayoutFriendlyUrl);
133    
134            @AutoEscape
135            public String getTargetPortletId();
136    
137            public void setTargetPortletId(String targetPortletId);
138    
139            @AutoEscape
140            public String getContentField();
141    
142            public void setContentField(String contentField);
143    
144            @AutoEscape
145            public String getFeedType();
146    
147            public void setFeedType(String feedType);
148    
149            public double getFeedVersion();
150    
151            public void setFeedVersion(double feedVersion);
152    
153            public JournalFeed toEscapedModel();
154    
155            public boolean isNew();
156    
157            public void setNew(boolean n);
158    
159            public boolean isCachedModel();
160    
161            public void setCachedModel(boolean cachedModel);
162    
163            public boolean isEscapedModel();
164    
165            public void setEscapedModel(boolean escapedModel);
166    
167            public Serializable getPrimaryKeyObj();
168    
169            public ExpandoBridge getExpandoBridge();
170    
171            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
172    
173            public Object clone();
174    
175            public int compareTo(JournalFeed journalFeed);
176    
177            public int hashCode();
178    
179            public String toString();
180    
181            public String toXmlString();
182    }