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  /**
18   * <a href="WikiPageResourceSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link WikiPageResource}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       WikiPageResource
31   * @generated
32   */
33  public class WikiPageResourceWrapper implements WikiPageResource {
34      public WikiPageResourceWrapper(WikiPageResource wikiPageResource) {
35          _wikiPageResource = wikiPageResource;
36      }
37  
38      public long getPrimaryKey() {
39          return _wikiPageResource.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _wikiPageResource.setPrimaryKey(pk);
44      }
45  
46      public long getResourcePrimKey() {
47          return _wikiPageResource.getResourcePrimKey();
48      }
49  
50      public void setResourcePrimKey(long resourcePrimKey) {
51          _wikiPageResource.setResourcePrimKey(resourcePrimKey);
52      }
53  
54      public long getNodeId() {
55          return _wikiPageResource.getNodeId();
56      }
57  
58      public void setNodeId(long nodeId) {
59          _wikiPageResource.setNodeId(nodeId);
60      }
61  
62      public java.lang.String getTitle() {
63          return _wikiPageResource.getTitle();
64      }
65  
66      public void setTitle(java.lang.String title) {
67          _wikiPageResource.setTitle(title);
68      }
69  
70      public boolean isNew() {
71          return _wikiPageResource.isNew();
72      }
73  
74      public boolean setNew(boolean n) {
75          return _wikiPageResource.setNew(n);
76      }
77  
78      public boolean isCachedModel() {
79          return _wikiPageResource.isCachedModel();
80      }
81  
82      public void setCachedModel(boolean cachedModel) {
83          _wikiPageResource.setCachedModel(cachedModel);
84      }
85  
86      public boolean isEscapedModel() {
87          return _wikiPageResource.isEscapedModel();
88      }
89  
90      public void setEscapedModel(boolean escapedModel) {
91          _wikiPageResource.setEscapedModel(escapedModel);
92      }
93  
94      public java.io.Serializable getPrimaryKeyObj() {
95          return _wikiPageResource.getPrimaryKeyObj();
96      }
97  
98      public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
99          return _wikiPageResource.getExpandoBridge();
100     }
101 
102     public void setExpandoBridgeAttributes(
103         com.liferay.portal.service.ServiceContext serviceContext) {
104         _wikiPageResource.setExpandoBridgeAttributes(serviceContext);
105     }
106 
107     public java.lang.Object clone() {
108         return _wikiPageResource.clone();
109     }
110 
111     public int compareTo(
112         com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource) {
113         return _wikiPageResource.compareTo(wikiPageResource);
114     }
115 
116     public int hashCode() {
117         return _wikiPageResource.hashCode();
118     }
119 
120     public com.liferay.portlet.wiki.model.WikiPageResource toEscapedModel() {
121         return _wikiPageResource.toEscapedModel();
122     }
123 
124     public java.lang.String toString() {
125         return _wikiPageResource.toString();
126     }
127 
128     public java.lang.String toXmlString() {
129         return _wikiPageResource.toXmlString();
130     }
131 
132     public WikiPageResource getWrappedWikiPageResource() {
133         return _wikiPageResource;
134     }
135 
136     private WikiPageResource _wikiPageResource;
137 }