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.softwarecatalog.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 SCProductEntry table in the
031     * database.
032     * </p>
033     *
034     * @author    Brian Wing Shun Chan
035     * @see       SCProductEntry
036     * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryImpl
037     * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryModelImpl
038     * @generated
039     */
040    public interface SCProductEntryModel extends BaseModel<SCProductEntry> {
041            public long getPrimaryKey();
042    
043            public void setPrimaryKey(long pk);
044    
045            public long getProductEntryId();
046    
047            public void setProductEntryId(long productEntryId);
048    
049            public long getGroupId();
050    
051            public void setGroupId(long groupId);
052    
053            public long getCompanyId();
054    
055            public void setCompanyId(long companyId);
056    
057            public long getUserId();
058    
059            public void setUserId(long userId);
060    
061            public String getUserUuid() throws SystemException;
062    
063            public void setUserUuid(String userUuid);
064    
065            @AutoEscape
066            public String getUserName();
067    
068            public void setUserName(String userName);
069    
070            public Date getCreateDate();
071    
072            public void setCreateDate(Date createDate);
073    
074            public Date getModifiedDate();
075    
076            public void setModifiedDate(Date modifiedDate);
077    
078            @AutoEscape
079            public String getName();
080    
081            public void setName(String name);
082    
083            @AutoEscape
084            public String getType();
085    
086            public void setType(String type);
087    
088            @AutoEscape
089            public String getTags();
090    
091            public void setTags(String tags);
092    
093            @AutoEscape
094            public String getShortDescription();
095    
096            public void setShortDescription(String shortDescription);
097    
098            @AutoEscape
099            public String getLongDescription();
100    
101            public void setLongDescription(String longDescription);
102    
103            @AutoEscape
104            public String getPageURL();
105    
106            public void setPageURL(String pageURL);
107    
108            @AutoEscape
109            public String getAuthor();
110    
111            public void setAuthor(String author);
112    
113            @AutoEscape
114            public String getRepoGroupId();
115    
116            public void setRepoGroupId(String repoGroupId);
117    
118            @AutoEscape
119            public String getRepoArtifactId();
120    
121            public void setRepoArtifactId(String repoArtifactId);
122    
123            public SCProductEntry toEscapedModel();
124    
125            public boolean isNew();
126    
127            public void setNew(boolean n);
128    
129            public boolean isCachedModel();
130    
131            public void setCachedModel(boolean cachedModel);
132    
133            public boolean isEscapedModel();
134    
135            public void setEscapedModel(boolean escapedModel);
136    
137            public Serializable getPrimaryKeyObj();
138    
139            public ExpandoBridge getExpandoBridge();
140    
141            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
142    
143            public Object clone();
144    
145            public int compareTo(SCProductEntry scProductEntry);
146    
147            public int hashCode();
148    
149            public String toString();
150    
151            public String toXmlString();
152    }