/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.journal.model; import aQute.bnd.annotation.ProviderType; import com.liferay.expando.kernel.model.ExpandoBridge; import com.liferay.portal.kernel.bean.AutoEscape; import com.liferay.portal.kernel.model.BaseModel; import com.liferay.portal.kernel.model.CacheModel; import com.liferay.portal.kernel.model.ShardedModel; import com.liferay.portal.kernel.model.StagedGroupedModel; import com.liferay.portal.kernel.service.ServiceContext; import java.io.Serializable; import java.util.Date; /** * The base model interface for the JournalFeed service. Represents a row in the "JournalFeed" database table, with each column mapped to a property of this class. * * <p> * This interface and its corresponding implementation {@link com.liferay.journal.model.impl.JournalFeedModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.journal.model.impl.JournalFeedImpl}. * </p> * * @author Brian Wing Shun Chan * @see JournalFeed * @see com.liferay.journal.model.impl.JournalFeedImpl * @see com.liferay.journal.model.impl.JournalFeedModelImpl * @generated */ @ProviderType public interface JournalFeedModel extends BaseModel<JournalFeed>, ShardedModel, StagedGroupedModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a journal feed model instance should use the {@link JournalFeed} interface instead. */ /** * Returns the primary key of this journal feed. * * @return the primary key of this journal feed */ public long getPrimaryKey(); /** * Sets the primary key of this journal feed. * * @param primaryKey the primary key of this journal feed */ public void setPrimaryKey(long primaryKey); /** * Returns the uuid of this journal feed. * * @return the uuid of this journal feed */ @AutoEscape @Override public String getUuid(); /** * Sets the uuid of this journal feed. * * @param uuid the uuid of this journal feed */ @Override public void setUuid(String uuid); /** * Returns the ID of this journal feed. * * @return the ID of this journal feed */ public long getId(); /** * Sets the ID of this journal feed. * * @param id the ID of this journal feed */ public void setId(long id); /** * Returns the group ID of this journal feed. * * @return the group ID of this journal feed */ @Override public long getGroupId(); /** * Sets the group ID of this journal feed. * * @param groupId the group ID of this journal feed */ @Override public void setGroupId(long groupId); /** * Returns the company ID of this journal feed. * * @return the company ID of this journal feed */ @Override public long getCompanyId(); /** * Sets the company ID of this journal feed. * * @param companyId the company ID of this journal feed */ @Override public void setCompanyId(long companyId); /** * Returns the user ID of this journal feed. * * @return the user ID of this journal feed */ @Override public long getUserId(); /** * Sets the user ID of this journal feed. * * @param userId the user ID of this journal feed */ @Override public void setUserId(long userId); /** * Returns the user uuid of this journal feed. * * @return the user uuid of this journal feed */ @Override public String getUserUuid(); /** * Sets the user uuid of this journal feed. * * @param userUuid the user uuid of this journal feed */ @Override public void setUserUuid(String userUuid); /** * Returns the user name of this journal feed. * * @return the user name of this journal feed */ @AutoEscape @Override public String getUserName(); /** * Sets the user name of this journal feed. * * @param userName the user name of this journal feed */ @Override public void setUserName(String userName); /** * Returns the create date of this journal feed. * * @return the create date of this journal feed */ @Override public Date getCreateDate(); /** * Sets the create date of this journal feed. * * @param createDate the create date of this journal feed */ @Override public void setCreateDate(Date createDate); /** * Returns the modified date of this journal feed. * * @return the modified date of this journal feed */ @Override public Date getModifiedDate(); /** * Sets the modified date of this journal feed. * * @param modifiedDate the modified date of this journal feed */ @Override public void setModifiedDate(Date modifiedDate); /** * Returns the feed ID of this journal feed. * * @return the feed ID of this journal feed */ public String getFeedId(); /** * Sets the feed ID of this journal feed. * * @param feedId the feed ID of this journal feed */ public void setFeedId(String feedId); /** * Returns the name of this journal feed. * * @return the name of this journal feed */ @AutoEscape public String getName(); /** * Sets the name of this journal feed. * * @param name the name of this journal feed */ public void setName(String name); /** * Returns the description of this journal feed. * * @return the description of this journal feed */ @AutoEscape public String getDescription(); /** * Sets the description of this journal feed. * * @param description the description of this journal feed */ public void setDescription(String description); /** * Returns the ddm structure key of this journal feed. * * @return the ddm structure key of this journal feed */ @AutoEscape public String getDDMStructureKey(); /** * Sets the ddm structure key of this journal feed. * * @param DDMStructureKey the ddm structure key of this journal feed */ public void setDDMStructureKey(String DDMStructureKey); /** * Returns the ddm template key of this journal feed. * * @return the ddm template key of this journal feed */ @AutoEscape public String getDDMTemplateKey(); /** * Sets the ddm template key of this journal feed. * * @param DDMTemplateKey the ddm template key of this journal feed */ public void setDDMTemplateKey(String DDMTemplateKey); /** * Returns the ddm renderer template key of this journal feed. * * @return the ddm renderer template key of this journal feed */ @AutoEscape public String getDDMRendererTemplateKey(); /** * Sets the ddm renderer template key of this journal feed. * * @param DDMRendererTemplateKey the ddm renderer template key of this journal feed */ public void setDDMRendererTemplateKey(String DDMRendererTemplateKey); /** * Returns the delta of this journal feed. * * @return the delta of this journal feed */ public int getDelta(); /** * Sets the delta of this journal feed. * * @param delta the delta of this journal feed */ public void setDelta(int delta); /** * Returns the order by col of this journal feed. * * @return the order by col of this journal feed */ @AutoEscape public String getOrderByCol(); /** * Sets the order by col of this journal feed. * * @param orderByCol the order by col of this journal feed */ public void setOrderByCol(String orderByCol); /** * Returns the order by type of this journal feed. * * @return the order by type of this journal feed */ @AutoEscape public String getOrderByType(); /** * Sets the order by type of this journal feed. * * @param orderByType the order by type of this journal feed */ public void setOrderByType(String orderByType); /** * Returns the target layout friendly url of this journal feed. * * @return the target layout friendly url of this journal feed */ @AutoEscape public String getTargetLayoutFriendlyUrl(); /** * Sets the target layout friendly url of this journal feed. * * @param targetLayoutFriendlyUrl the target layout friendly url of this journal feed */ public void setTargetLayoutFriendlyUrl(String targetLayoutFriendlyUrl); /** * Returns the target portlet ID of this journal feed. * * @return the target portlet ID of this journal feed */ @AutoEscape public String getTargetPortletId(); /** * Sets the target portlet ID of this journal feed. * * @param targetPortletId the target portlet ID of this journal feed */ public void setTargetPortletId(String targetPortletId); /** * Returns the content field of this journal feed. * * @return the content field of this journal feed */ @AutoEscape public String getContentField(); /** * Sets the content field of this journal feed. * * @param contentField the content field of this journal feed */ public void setContentField(String contentField); /** * Returns the feed format of this journal feed. * * @return the feed format of this journal feed */ @AutoEscape public String getFeedFormat(); /** * Sets the feed format of this journal feed. * * @param feedFormat the feed format of this journal feed */ public void setFeedFormat(String feedFormat); /** * Returns the feed version of this journal feed. * * @return the feed version of this journal feed */ public double getFeedVersion(); /** * Sets the feed version of this journal feed. * * @param feedVersion the feed version of this journal feed */ public void setFeedVersion(double feedVersion); /** * Returns the last publish date of this journal feed. * * @return the last publish date of this journal feed */ @Override public Date getLastPublishDate(); /** * Sets the last publish date of this journal feed. * * @param lastPublishDate the last publish date of this journal feed */ @Override public void setLastPublishDate(Date lastPublishDate); @Override public boolean isNew(); @Override public void setNew(boolean n); @Override public boolean isCachedModel(); @Override public void setCachedModel(boolean cachedModel); @Override public boolean isEscapedModel(); @Override public Serializable getPrimaryKeyObj(); @Override public void setPrimaryKeyObj(Serializable primaryKeyObj); @Override public ExpandoBridge getExpandoBridge(); @Override public void setExpandoBridgeAttributes(BaseModel<?> baseModel); @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext); @Override public Object clone(); @Override public int compareTo(JournalFeed journalFeed); @Override public int hashCode(); @Override public CacheModel<JournalFeed> toCacheModel(); @Override public JournalFeed toEscapedModel(); @Override public JournalFeed toUnescapedModel(); @Override public String toString(); @Override public String toXmlString(); }