1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.bookmarks.model;
16  
17  import com.liferay.portal.SystemException;
18  import com.liferay.portal.kernel.annotation.AutoEscape;
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="BookmarksEntryModel.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 BookmarksEntry table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       BookmarksEntry
43   * @see       com.liferay.portlet.bookmarks.model.impl.BookmarksEntryImpl
44   * @see       com.liferay.portlet.bookmarks.model.impl.BookmarksEntryModelImpl
45   * @generated
46   */
47  public interface BookmarksEntryModel extends BaseModel<BookmarksEntry> {
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 getEntryId();
58  
59      public void setEntryId(long entryId);
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      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 long getFolderId();
86  
87      public void setFolderId(long folderId);
88  
89      @AutoEscape
90      public String getName();
91  
92      public void setName(String name);
93  
94      @AutoEscape
95      public String getUrl();
96  
97      public void setUrl(String url);
98  
99      @AutoEscape
100     public String getComments();
101 
102     public void setComments(String comments);
103 
104     public int getVisits();
105 
106     public void setVisits(int visits);
107 
108     public int getPriority();
109 
110     public void setPriority(int priority);
111 
112     public boolean isNew();
113 
114     public boolean setNew(boolean n);
115 
116     public boolean isCachedModel();
117 
118     public void setCachedModel(boolean cachedModel);
119 
120     public boolean isEscapedModel();
121 
122     public void setEscapedModel(boolean escapedModel);
123 
124     public Serializable getPrimaryKeyObj();
125 
126     public ExpandoBridge getExpandoBridge();
127 
128     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
129 
130     public Object clone();
131 
132     public int compareTo(BookmarksEntry bookmarksEntry);
133 
134     public int hashCode();
135 
136     public BookmarksEntry toEscapedModel();
137 
138     public String toString();
139 
140     public String toXmlString();
141 }