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.journal.model;
16  
17  /**
18   * <a href="JournalContentSearchSoap.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 JournalContentSearch}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       JournalContentSearch
31   * @generated
32   */
33  public class JournalContentSearchWrapper implements JournalContentSearch {
34      public JournalContentSearchWrapper(
35          JournalContentSearch journalContentSearch) {
36          _journalContentSearch = journalContentSearch;
37      }
38  
39      public long getPrimaryKey() {
40          return _journalContentSearch.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _journalContentSearch.setPrimaryKey(pk);
45      }
46  
47      public long getContentSearchId() {
48          return _journalContentSearch.getContentSearchId();
49      }
50  
51      public void setContentSearchId(long contentSearchId) {
52          _journalContentSearch.setContentSearchId(contentSearchId);
53      }
54  
55      public long getGroupId() {
56          return _journalContentSearch.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _journalContentSearch.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _journalContentSearch.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _journalContentSearch.setCompanyId(companyId);
69      }
70  
71      public boolean getPrivateLayout() {
72          return _journalContentSearch.getPrivateLayout();
73      }
74  
75      public boolean isPrivateLayout() {
76          return _journalContentSearch.isPrivateLayout();
77      }
78  
79      public void setPrivateLayout(boolean privateLayout) {
80          _journalContentSearch.setPrivateLayout(privateLayout);
81      }
82  
83      public long getLayoutId() {
84          return _journalContentSearch.getLayoutId();
85      }
86  
87      public void setLayoutId(long layoutId) {
88          _journalContentSearch.setLayoutId(layoutId);
89      }
90  
91      public java.lang.String getPortletId() {
92          return _journalContentSearch.getPortletId();
93      }
94  
95      public void setPortletId(java.lang.String portletId) {
96          _journalContentSearch.setPortletId(portletId);
97      }
98  
99      public java.lang.String getArticleId() {
100         return _journalContentSearch.getArticleId();
101     }
102 
103     public void setArticleId(java.lang.String articleId) {
104         _journalContentSearch.setArticleId(articleId);
105     }
106 
107     public boolean isNew() {
108         return _journalContentSearch.isNew();
109     }
110 
111     public boolean setNew(boolean n) {
112         return _journalContentSearch.setNew(n);
113     }
114 
115     public boolean isCachedModel() {
116         return _journalContentSearch.isCachedModel();
117     }
118 
119     public void setCachedModel(boolean cachedModel) {
120         _journalContentSearch.setCachedModel(cachedModel);
121     }
122 
123     public boolean isEscapedModel() {
124         return _journalContentSearch.isEscapedModel();
125     }
126 
127     public void setEscapedModel(boolean escapedModel) {
128         _journalContentSearch.setEscapedModel(escapedModel);
129     }
130 
131     public java.io.Serializable getPrimaryKeyObj() {
132         return _journalContentSearch.getPrimaryKeyObj();
133     }
134 
135     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
136         return _journalContentSearch.getExpandoBridge();
137     }
138 
139     public void setExpandoBridgeAttributes(
140         com.liferay.portal.service.ServiceContext serviceContext) {
141         _journalContentSearch.setExpandoBridgeAttributes(serviceContext);
142     }
143 
144     public java.lang.Object clone() {
145         return _journalContentSearch.clone();
146     }
147 
148     public int compareTo(
149         com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch) {
150         return _journalContentSearch.compareTo(journalContentSearch);
151     }
152 
153     public int hashCode() {
154         return _journalContentSearch.hashCode();
155     }
156 
157     public com.liferay.portlet.journal.model.JournalContentSearch toEscapedModel() {
158         return _journalContentSearch.toEscapedModel();
159     }
160 
161     public java.lang.String toString() {
162         return _journalContentSearch.toString();
163     }
164 
165     public java.lang.String toXmlString() {
166         return _journalContentSearch.toXmlString();
167     }
168 
169     public JournalContentSearch getWrappedJournalContentSearch() {
170         return _journalContentSearch;
171     }
172 
173     private JournalContentSearch _journalContentSearch;
174 }