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.asset.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="AssetEntryModel.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 AssetEntry table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       AssetEntry
43   * @see       com.liferay.portlet.asset.model.impl.AssetEntryImpl
44   * @see       com.liferay.portlet.asset.model.impl.AssetEntryModelImpl
45   * @generated
46   */
47  public interface AssetEntryModel extends BaseModel<AssetEntry> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      public long getEntryId();
53  
54      public void setEntryId(long entryId);
55  
56      public long getGroupId();
57  
58      public void setGroupId(long groupId);
59  
60      public long getCompanyId();
61  
62      public void setCompanyId(long companyId);
63  
64      public long getUserId();
65  
66      public void setUserId(long userId);
67  
68      public String getUserUuid() throws SystemException;
69  
70      public void setUserUuid(String userUuid);
71  
72      @AutoEscape
73      public String getUserName();
74  
75      public void setUserName(String userName);
76  
77      public Date getCreateDate();
78  
79      public void setCreateDate(Date createDate);
80  
81      public Date getModifiedDate();
82  
83      public void setModifiedDate(Date modifiedDate);
84  
85      public String getClassName();
86  
87      public long getClassNameId();
88  
89      public void setClassNameId(long classNameId);
90  
91      public long getClassPK();
92  
93      public void setClassPK(long classPK);
94  
95      public boolean getVisible();
96  
97      public boolean isVisible();
98  
99      public void setVisible(boolean visible);
100 
101     public Date getStartDate();
102 
103     public void setStartDate(Date startDate);
104 
105     public Date getEndDate();
106 
107     public void setEndDate(Date endDate);
108 
109     public Date getPublishDate();
110 
111     public void setPublishDate(Date publishDate);
112 
113     public Date getExpirationDate();
114 
115     public void setExpirationDate(Date expirationDate);
116 
117     @AutoEscape
118     public String getMimeType();
119 
120     public void setMimeType(String mimeType);
121 
122     @AutoEscape
123     public String getTitle();
124 
125     public void setTitle(String title);
126 
127     @AutoEscape
128     public String getDescription();
129 
130     public void setDescription(String description);
131 
132     @AutoEscape
133     public String getSummary();
134 
135     public void setSummary(String summary);
136 
137     @AutoEscape
138     public String getUrl();
139 
140     public void setUrl(String url);
141 
142     public int getHeight();
143 
144     public void setHeight(int height);
145 
146     public int getWidth();
147 
148     public void setWidth(int width);
149 
150     public double getPriority();
151 
152     public void setPriority(double priority);
153 
154     public int getViewCount();
155 
156     public void setViewCount(int viewCount);
157 
158     public double getSocialInformationEquity();
159 
160     public void setSocialInformationEquity(double socialInformationEquity);
161 
162     public AssetEntry toEscapedModel();
163 
164     public boolean isNew();
165 
166     public boolean setNew(boolean n);
167 
168     public boolean isCachedModel();
169 
170     public void setCachedModel(boolean cachedModel);
171 
172     public boolean isEscapedModel();
173 
174     public void setEscapedModel(boolean escapedModel);
175 
176     public Serializable getPrimaryKeyObj();
177 
178     public ExpandoBridge getExpandoBridge();
179 
180     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
181 
182     public Object clone();
183 
184     public int compareTo(AssetEntry assetEntry);
185 
186     public int hashCode();
187 
188     public String toString();
189 
190     public String toXmlString();
191 }