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="DLFileRankModel.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 DLFileRank table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       DLFileRank
43   * @see       com.liferay.portlet.documentlibrary.model.impl.DLFileRankImpl
44   * @see       com.liferay.portlet.documentlibrary.model.impl.DLFileRankModelImpl
45   * @generated
46   */
47  public interface DLFileRankModel extends BaseModel<DLFileRank> {
48      public long getPrimaryKey();
49  
50      public void setPrimaryKey(long pk);
51  
52      public long getFileRankId();
53  
54      public void setFileRankId(long fileRankId);
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      public Date getCreateDate();
73  
74      public void setCreateDate(Date createDate);
75  
76      public long getFolderId();
77  
78      public void setFolderId(long folderId);
79  
80      @AutoEscape
81      public String getName();
82  
83      public void setName(String name);
84  
85      public DLFileRank toEscapedModel();
86  
87      public boolean isNew();
88  
89      public boolean setNew(boolean n);
90  
91      public boolean isCachedModel();
92  
93      public void setCachedModel(boolean cachedModel);
94  
95      public boolean isEscapedModel();
96  
97      public void setEscapedModel(boolean escapedModel);
98  
99      public Serializable getPrimaryKeyObj();
100 
101     public ExpandoBridge getExpandoBridge();
102 
103     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
104 
105     public Object clone();
106 
107     public int compareTo(DLFileRank dlFileRank);
108 
109     public int hashCode();
110 
111     public String toString();
112 
113     public String toXmlString();
114 }