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 SCProductVersion table in the
031     * database.
032     * </p>
033     *
034     * @author    Brian Wing Shun Chan
035     * @see       SCProductVersion
036     * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductVersionImpl
037     * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductVersionModelImpl
038     * @generated
039     */
040    public interface SCProductVersionModel extends BaseModel<SCProductVersion> {
041            public long getPrimaryKey();
042    
043            public void setPrimaryKey(long pk);
044    
045            public long getProductVersionId();
046    
047            public void setProductVersionId(long productVersionId);
048    
049            public long getCompanyId();
050    
051            public void setCompanyId(long companyId);
052    
053            public long getUserId();
054    
055            public void setUserId(long userId);
056    
057            public String getUserUuid() throws SystemException;
058    
059            public void setUserUuid(String userUuid);
060    
061            @AutoEscape
062            public String getUserName();
063    
064            public void setUserName(String userName);
065    
066            public Date getCreateDate();
067    
068            public void setCreateDate(Date createDate);
069    
070            public Date getModifiedDate();
071    
072            public void setModifiedDate(Date modifiedDate);
073    
074            public long getProductEntryId();
075    
076            public void setProductEntryId(long productEntryId);
077    
078            @AutoEscape
079            public String getVersion();
080    
081            public void setVersion(String version);
082    
083            @AutoEscape
084            public String getChangeLog();
085    
086            public void setChangeLog(String changeLog);
087    
088            @AutoEscape
089            public String getDownloadPageURL();
090    
091            public void setDownloadPageURL(String downloadPageURL);
092    
093            @AutoEscape
094            public String getDirectDownloadURL();
095    
096            public void setDirectDownloadURL(String directDownloadURL);
097    
098            public boolean getRepoStoreArtifact();
099    
100            public boolean isRepoStoreArtifact();
101    
102            public void setRepoStoreArtifact(boolean repoStoreArtifact);
103    
104            public SCProductVersion toEscapedModel();
105    
106            public boolean isNew();
107    
108            public void setNew(boolean n);
109    
110            public boolean isCachedModel();
111    
112            public void setCachedModel(boolean cachedModel);
113    
114            public boolean isEscapedModel();
115    
116            public void setEscapedModel(boolean escapedModel);
117    
118            public Serializable getPrimaryKeyObj();
119    
120            public ExpandoBridge getExpandoBridge();
121    
122            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
123    
124            public Object clone();
125    
126            public int compareTo(SCProductVersion scProductVersion);
127    
128            public int hashCode();
129    
130            public String toString();
131    
132            public String toXmlString();
133    }