1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.softwarecatalog.model;
16  
17  import com.liferay.portal.kernel.annotation.AutoEscape;
18  import com.liferay.portal.kernel.exception.SystemException;
19  import com.liferay.portal.model.BaseModel;
20  import com.liferay.portal.service.ServiceContext;
21  
22  import com.liferay.portlet.expando.model.ExpandoBridge;
23  
24  import java.io.Serializable;
25  
26  import java.util.Date;
27  
28  /**
29   * <a href="SCProductVersionModel.java.html"><b><i>View Source</i></b></a>
30   *
31   * <p>
32   * ServiceBuilder generated this class. Modifications in this class will be
33   * overwritten the next time is generated.
34   * </p>
35   *
36   * <p>
37   * This interface is a model that represents the SCProductVersion table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       SCProductVersion
43   * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductVersionImpl
44   * @see       com.liferay.portlet.softwarecatalog.model.impl.SCProductVersionModelImpl
45   * @generated
46   */
47  public interface SCProductVersionModel extends BaseModel<SCProductVersion> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      public long getProductVersionId();
53  
54      public void setProductVersionId(long productVersionId);
55  
56      public long getCompanyId();
57  
58      public void setCompanyId(long companyId);
59  
60      public long getUserId();
61  
62      public void setUserId(long userId);
63  
64      public String getUserUuid() throws SystemException;
65  
66      public void setUserUuid(String userUuid);
67  
68      @AutoEscape
69      public String getUserName();
70  
71      public void setUserName(String userName);
72  
73      public Date getCreateDate();
74  
75      public void setCreateDate(Date createDate);
76  
77      public Date getModifiedDate();
78  
79      public void setModifiedDate(Date modifiedDate);
80  
81      public long getProductEntryId();
82  
83      public void setProductEntryId(long productEntryId);
84  
85      @AutoEscape
86      public String getVersion();
87  
88      public void setVersion(String version);
89  
90      @AutoEscape
91      public String getChangeLog();
92  
93      public void setChangeLog(String changeLog);
94  
95      @AutoEscape
96      public String getDownloadPageURL();
97  
98      public void setDownloadPageURL(String downloadPageURL);
99  
100     @AutoEscape
101     public String getDirectDownloadURL();
102 
103     public void setDirectDownloadURL(String directDownloadURL);
104 
105     public boolean getRepoStoreArtifact();
106 
107     public boolean isRepoStoreArtifact();
108 
109     public void setRepoStoreArtifact(boolean repoStoreArtifact);
110 
111     public SCProductVersion toEscapedModel();
112 
113     public boolean isNew();
114 
115     public boolean setNew(boolean n);
116 
117     public boolean isCachedModel();
118 
119     public void setCachedModel(boolean cachedModel);
120 
121     public boolean isEscapedModel();
122 
123     public void setEscapedModel(boolean escapedModel);
124 
125     public Serializable getPrimaryKeyObj();
126 
127     public ExpandoBridge getExpandoBridge();
128 
129     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
130 
131     public Object clone();
132 
133     public int compareTo(SCProductVersion scProductVersion);
134 
135     public int hashCode();
136 
137     public String toString();
138 
139     public String toXmlString();
140 }