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.documentlibrary.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="DLFileEntryModel.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 DLFileEntry table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       DLFileEntry
43   * @see       com.liferay.portlet.documentlibrary.model.impl.DLFileEntryImpl
44   * @see       com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl
45   * @generated
46   */
47  public interface DLFileEntryModel extends BaseModel<DLFileEntry> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      @AutoEscape
53      public String getUuid();
54  
55      public void setUuid(String uuid);
56  
57      public long getFileEntryId();
58  
59      public void setFileEntryId(long fileEntryId);
60  
61      public long getGroupId();
62  
63      public void setGroupId(long groupId);
64  
65      public long getCompanyId();
66  
67      public void setCompanyId(long companyId);
68  
69      public long getUserId();
70  
71      public void setUserId(long userId);
72  
73      public String getUserUuid() throws SystemException;
74  
75      public void setUserUuid(String userUuid);
76  
77      @AutoEscape
78      public String getUserName();
79  
80      public void setUserName(String userName);
81  
82      public long getVersionUserId();
83  
84      public void setVersionUserId(long versionUserId);
85  
86      public String getVersionUserUuid() throws SystemException;
87  
88      public void setVersionUserUuid(String versionUserUuid);
89  
90      @AutoEscape
91      public String getVersionUserName();
92  
93      public void setVersionUserName(String versionUserName);
94  
95      public Date getCreateDate();
96  
97      public void setCreateDate(Date createDate);
98  
99      public Date getModifiedDate();
100 
101     public void setModifiedDate(Date modifiedDate);
102 
103     public long getFolderId();
104 
105     public void setFolderId(long folderId);
106 
107     @AutoEscape
108     public String getName();
109 
110     public void setName(String name);
111 
112     @AutoEscape
113     public String getTitle();
114 
115     public void setTitle(String title);
116 
117     @AutoEscape
118     public String getDescription();
119 
120     public void setDescription(String description);
121 
122     @AutoEscape
123     public String getVersion();
124 
125     public void setVersion(String version);
126 
127     public long getSize();
128 
129     public void setSize(long size);
130 
131     public int getReadCount();
132 
133     public void setReadCount(int readCount);
134 
135     @AutoEscape
136     public String getExtraSettings();
137 
138     public void setExtraSettings(String extraSettings);
139 
140     public DLFileEntry toEscapedModel();
141 
142     public boolean isNew();
143 
144     public boolean setNew(boolean n);
145 
146     public boolean isCachedModel();
147 
148     public void setCachedModel(boolean cachedModel);
149 
150     public boolean isEscapedModel();
151 
152     public void setEscapedModel(boolean escapedModel);
153 
154     public Serializable getPrimaryKeyObj();
155 
156     public ExpandoBridge getExpandoBridge();
157 
158     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
159 
160     public Object clone();
161 
162     public int compareTo(DLFileEntry dlFileEntry);
163 
164     public int hashCode();
165 
166     public String toString();
167 
168     public String toXmlString();
169 }