1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.journal.model;
24  
25  
26  /**
27   * <a href="JournalContentSearchSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link JournalContentSearch}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       JournalContentSearch
40   * @generated
41   */
42  public class JournalContentSearchWrapper implements JournalContentSearch {
43      public JournalContentSearchWrapper(
44          JournalContentSearch journalContentSearch) {
45          _journalContentSearch = journalContentSearch;
46      }
47  
48      public long getPrimaryKey() {
49          return _journalContentSearch.getPrimaryKey();
50      }
51  
52      public void setPrimaryKey(long pk) {
53          _journalContentSearch.setPrimaryKey(pk);
54      }
55  
56      public long getContentSearchId() {
57          return _journalContentSearch.getContentSearchId();
58      }
59  
60      public void setContentSearchId(long contentSearchId) {
61          _journalContentSearch.setContentSearchId(contentSearchId);
62      }
63  
64      public long getGroupId() {
65          return _journalContentSearch.getGroupId();
66      }
67  
68      public void setGroupId(long groupId) {
69          _journalContentSearch.setGroupId(groupId);
70      }
71  
72      public long getCompanyId() {
73          return _journalContentSearch.getCompanyId();
74      }
75  
76      public void setCompanyId(long companyId) {
77          _journalContentSearch.setCompanyId(companyId);
78      }
79  
80      public boolean getPrivateLayout() {
81          return _journalContentSearch.getPrivateLayout();
82      }
83  
84      public boolean isPrivateLayout() {
85          return _journalContentSearch.isPrivateLayout();
86      }
87  
88      public void setPrivateLayout(boolean privateLayout) {
89          _journalContentSearch.setPrivateLayout(privateLayout);
90      }
91  
92      public long getLayoutId() {
93          return _journalContentSearch.getLayoutId();
94      }
95  
96      public void setLayoutId(long layoutId) {
97          _journalContentSearch.setLayoutId(layoutId);
98      }
99  
100     public java.lang.String getPortletId() {
101         return _journalContentSearch.getPortletId();
102     }
103 
104     public void setPortletId(java.lang.String portletId) {
105         _journalContentSearch.setPortletId(portletId);
106     }
107 
108     public java.lang.String getArticleId() {
109         return _journalContentSearch.getArticleId();
110     }
111 
112     public void setArticleId(java.lang.String articleId) {
113         _journalContentSearch.setArticleId(articleId);
114     }
115 
116     public com.liferay.portlet.journal.model.JournalContentSearch toEscapedModel() {
117         return _journalContentSearch.toEscapedModel();
118     }
119 
120     public boolean isNew() {
121         return _journalContentSearch.isNew();
122     }
123 
124     public boolean setNew(boolean n) {
125         return _journalContentSearch.setNew(n);
126     }
127 
128     public boolean isCachedModel() {
129         return _journalContentSearch.isCachedModel();
130     }
131 
132     public void setCachedModel(boolean cachedModel) {
133         _journalContentSearch.setCachedModel(cachedModel);
134     }
135 
136     public boolean isEscapedModel() {
137         return _journalContentSearch.isEscapedModel();
138     }
139 
140     public void setEscapedModel(boolean escapedModel) {
141         _journalContentSearch.setEscapedModel(escapedModel);
142     }
143 
144     public java.io.Serializable getPrimaryKeyObj() {
145         return _journalContentSearch.getPrimaryKeyObj();
146     }
147 
148     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
149         return _journalContentSearch.getExpandoBridge();
150     }
151 
152     public void setExpandoBridgeAttributes(
153         com.liferay.portal.service.ServiceContext serviceContext) {
154         _journalContentSearch.setExpandoBridgeAttributes(serviceContext);
155     }
156 
157     public java.lang.Object clone() {
158         return _journalContentSearch.clone();
159     }
160 
161     public int compareTo(
162         com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch) {
163         return _journalContentSearch.compareTo(journalContentSearch);
164     }
165 
166     public int hashCode() {
167         return _journalContentSearch.hashCode();
168     }
169 
170     public java.lang.String toString() {
171         return _journalContentSearch.toString();
172     }
173 
174     public java.lang.String toXmlString() {
175         return _journalContentSearch.toXmlString();
176     }
177 
178     public JournalContentSearch getWrappedJournalContentSearch() {
179         return _journalContentSearch;
180     }
181 
182     private JournalContentSearch _journalContentSearch;
183 }