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.blogs.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="BlogsEntryModel.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 BlogsEntry table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       BlogsEntry
43   * @see       com.liferay.portlet.blogs.model.impl.BlogsEntryImpl
44   * @see       com.liferay.portlet.blogs.model.impl.BlogsEntryModelImpl
45   * @generated
46   */
47  public interface BlogsEntryModel extends BaseModel<BlogsEntry> {
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      @AutoEscape
78      public String getUserName();
79  
80      public void setUserName(String userName);
81  
82      public Date getCreateDate();
83  
84      public void setCreateDate(Date createDate);
85  
86      public Date getModifiedDate();
87  
88      public void setModifiedDate(Date modifiedDate);
89  
90      @AutoEscape
91      public String getTitle();
92  
93      public void setTitle(String title);
94  
95      @AutoEscape
96      public String getUrlTitle();
97  
98      public void setUrlTitle(String urlTitle);
99  
100     @AutoEscape
101     public String getContent();
102 
103     public void setContent(String content);
104 
105     public Date getDisplayDate();
106 
107     public void setDisplayDate(Date displayDate);
108 
109     public boolean getDraft();
110 
111     public boolean isDraft();
112 
113     public void setDraft(boolean draft);
114 
115     public boolean getAllowTrackbacks();
116 
117     public boolean isAllowTrackbacks();
118 
119     public void setAllowTrackbacks(boolean allowTrackbacks);
120 
121     @AutoEscape
122     public String getTrackbacks();
123 
124     public void setTrackbacks(String trackbacks);
125 
126     public boolean isNew();
127 
128     public boolean setNew(boolean n);
129 
130     public boolean isCachedModel();
131 
132     public void setCachedModel(boolean cachedModel);
133 
134     public boolean isEscapedModel();
135 
136     public void setEscapedModel(boolean escapedModel);
137 
138     public Serializable getPrimaryKeyObj();
139 
140     public ExpandoBridge getExpandoBridge();
141 
142     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
143 
144     public Object clone();
145 
146     public int compareTo(BlogsEntry blogsEntry);
147 
148     public int hashCode();
149 
150     public BlogsEntry toEscapedModel();
151 
152     public String toString();
153 
154     public String toXmlString();
155 }