001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.journal.model;
022:
023: import com.liferay.portal.model.BaseModel;
024:
025: import java.util.Date;
026:
027: /**
028: * <a href="JournalFeedModel.java.html"><b><i>View Source</i></b></a>
029: *
030: * <p>
031: * ServiceBuilder generated this class. Modifications in this class will be
032: * overwritten the next time is generated.
033: * </p>
034: *
035: * <p>
036: * This interface is a model that represents the <code>JournalFeed</code>
037: * table in the database.
038: * </p>
039: *
040: * @author Brian Wing Shun Chan
041: *
042: * @see com.liferay.portlet.journal.service.model.JournalFeed
043: * @see com.liferay.portlet.journal.service.model.impl.JournalFeedImpl
044: * @see com.liferay.portlet.journal.service.model.impl.JournalFeedModelImpl
045: *
046: */
047: public interface JournalFeedModel extends BaseModel {
048: public long getPrimaryKey();
049:
050: public void setPrimaryKey(long pk);
051:
052: public String getUuid();
053:
054: public void setUuid(String uuid);
055:
056: public long getId();
057:
058: public void setId(long id);
059:
060: public long getGroupId();
061:
062: public void setGroupId(long groupId);
063:
064: public long getCompanyId();
065:
066: public void setCompanyId(long companyId);
067:
068: public long getUserId();
069:
070: public void setUserId(long userId);
071:
072: public String getUserName();
073:
074: public void setUserName(String userName);
075:
076: public Date getCreateDate();
077:
078: public void setCreateDate(Date createDate);
079:
080: public Date getModifiedDate();
081:
082: public void setModifiedDate(Date modifiedDate);
083:
084: public String getFeedId();
085:
086: public void setFeedId(String feedId);
087:
088: public String getName();
089:
090: public void setName(String name);
091:
092: public String getDescription();
093:
094: public void setDescription(String description);
095:
096: public String getType();
097:
098: public void setType(String type);
099:
100: public String getStructureId();
101:
102: public void setStructureId(String structureId);
103:
104: public String getTemplateId();
105:
106: public void setTemplateId(String templateId);
107:
108: public String getRendererTemplateId();
109:
110: public void setRendererTemplateId(String rendererTemplateId);
111:
112: public int getDelta();
113:
114: public void setDelta(int delta);
115:
116: public String getOrderByCol();
117:
118: public void setOrderByCol(String orderByCol);
119:
120: public String getOrderByType();
121:
122: public void setOrderByType(String orderByType);
123:
124: public String getTargetLayoutFriendlyUrl();
125:
126: public void setTargetLayoutFriendlyUrl(
127: String targetLayoutFriendlyUrl);
128:
129: public String getTargetPortletId();
130:
131: public void setTargetPortletId(String targetPortletId);
132:
133: public String getContentField();
134:
135: public void setContentField(String contentField);
136:
137: public String getFeedType();
138:
139: public void setFeedType(String feedType);
140:
141: public double getFeedVersion();
142:
143: public void setFeedVersion(double feedVersion);
144:
145: public JournalFeed toEscapedModel();
146: }
|