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.wiki.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="WikiPageModel.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 WikiPage table in the
38   * database.
39   * </p>
40   *
41   * @author    Brian Wing Shun Chan
42   * @see       WikiPage
43   * @see       com.liferay.portlet.wiki.model.impl.WikiPageImpl
44   * @see       com.liferay.portlet.wiki.model.impl.WikiPageModelImpl
45   * @generated
46   */
47  public interface WikiPageModel extends BaseModel<WikiPage> {
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 getPageId();
58  
59      public void setPageId(long pageId);
60  
61      public long getResourcePrimKey();
62  
63      public void setResourcePrimKey(long resourcePrimKey);
64  
65      public long getGroupId();
66  
67      public void setGroupId(long groupId);
68  
69      public long getCompanyId();
70  
71      public void setCompanyId(long companyId);
72  
73      public long getUserId();
74  
75      public void setUserId(long userId);
76  
77      public String getUserUuid() throws SystemException;
78  
79      public void setUserUuid(String userUuid);
80  
81      @AutoEscape
82      public String getUserName();
83  
84      public void setUserName(String userName);
85  
86      public Date getCreateDate();
87  
88      public void setCreateDate(Date createDate);
89  
90      public Date getModifiedDate();
91  
92      public void setModifiedDate(Date modifiedDate);
93  
94      public long getNodeId();
95  
96      public void setNodeId(long nodeId);
97  
98      @AutoEscape
99      public String getTitle();
100 
101     public void setTitle(String title);
102 
103     public double getVersion();
104 
105     public void setVersion(double version);
106 
107     public boolean getMinorEdit();
108 
109     public boolean isMinorEdit();
110 
111     public void setMinorEdit(boolean minorEdit);
112 
113     @AutoEscape
114     public String getContent();
115 
116     public void setContent(String content);
117 
118     @AutoEscape
119     public String getSummary();
120 
121     public void setSummary(String summary);
122 
123     @AutoEscape
124     public String getFormat();
125 
126     public void setFormat(String format);
127 
128     public boolean getHead();
129 
130     public boolean isHead();
131 
132     public void setHead(boolean head);
133 
134     @AutoEscape
135     public String getParentTitle();
136 
137     public void setParentTitle(String parentTitle);
138 
139     @AutoEscape
140     public String getRedirectTitle();
141 
142     public void setRedirectTitle(String redirectTitle);
143 
144     public boolean isNew();
145 
146     public boolean setNew(boolean n);
147 
148     public boolean isCachedModel();
149 
150     public void setCachedModel(boolean cachedModel);
151 
152     public boolean isEscapedModel();
153 
154     public void setEscapedModel(boolean escapedModel);
155 
156     public Serializable getPrimaryKeyObj();
157 
158     public ExpandoBridge getExpandoBridge();
159 
160     public void setExpandoBridgeAttributes(ServiceContext serviceContext);
161 
162     public Object clone();
163 
164     public int compareTo(WikiPage wikiPage);
165 
166     public int hashCode();
167 
168     public WikiPage toEscapedModel();
169 
170     public String toString();
171 
172     public String toXmlString();
173 }