1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.journal.model;
16  
17  
18  /**
19   * <a href="JournalContentSearchSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link JournalContentSearch}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       JournalContentSearch
32   * @generated
33   */
34  public class JournalContentSearchWrapper implements JournalContentSearch {
35      public JournalContentSearchWrapper(
36          JournalContentSearch journalContentSearch) {
37          _journalContentSearch = journalContentSearch;
38      }
39  
40      public long getPrimaryKey() {
41          return _journalContentSearch.getPrimaryKey();
42      }
43  
44      public void setPrimaryKey(long pk) {
45          _journalContentSearch.setPrimaryKey(pk);
46      }
47  
48      public long getContentSearchId() {
49          return _journalContentSearch.getContentSearchId();
50      }
51  
52      public void setContentSearchId(long contentSearchId) {
53          _journalContentSearch.setContentSearchId(contentSearchId);
54      }
55  
56      public long getGroupId() {
57          return _journalContentSearch.getGroupId();
58      }
59  
60      public void setGroupId(long groupId) {
61          _journalContentSearch.setGroupId(groupId);
62      }
63  
64      public long getCompanyId() {
65          return _journalContentSearch.getCompanyId();
66      }
67  
68      public void setCompanyId(long companyId) {
69          _journalContentSearch.setCompanyId(companyId);
70      }
71  
72      public boolean getPrivateLayout() {
73          return _journalContentSearch.getPrivateLayout();
74      }
75  
76      public boolean isPrivateLayout() {
77          return _journalContentSearch.isPrivateLayout();
78      }
79  
80      public void setPrivateLayout(boolean privateLayout) {
81          _journalContentSearch.setPrivateLayout(privateLayout);
82      }
83  
84      public long getLayoutId() {
85          return _journalContentSearch.getLayoutId();
86      }
87  
88      public void setLayoutId(long layoutId) {
89          _journalContentSearch.setLayoutId(layoutId);
90      }
91  
92      public java.lang.String getPortletId() {
93          return _journalContentSearch.getPortletId();
94      }
95  
96      public void setPortletId(java.lang.String portletId) {
97          _journalContentSearch.setPortletId(portletId);
98      }
99  
100     public java.lang.String getArticleId() {
101         return _journalContentSearch.getArticleId();
102     }
103 
104     public void setArticleId(java.lang.String articleId) {
105         _journalContentSearch.setArticleId(articleId);
106     }
107 
108     public com.liferay.portlet.journal.model.JournalContentSearch toEscapedModel() {
109         return _journalContentSearch.toEscapedModel();
110     }
111 
112     public boolean isNew() {
113         return _journalContentSearch.isNew();
114     }
115 
116     public boolean setNew(boolean n) {
117         return _journalContentSearch.setNew(n);
118     }
119 
120     public boolean isCachedModel() {
121         return _journalContentSearch.isCachedModel();
122     }
123 
124     public void setCachedModel(boolean cachedModel) {
125         _journalContentSearch.setCachedModel(cachedModel);
126     }
127 
128     public boolean isEscapedModel() {
129         return _journalContentSearch.isEscapedModel();
130     }
131 
132     public void setEscapedModel(boolean escapedModel) {
133         _journalContentSearch.setEscapedModel(escapedModel);
134     }
135 
136     public java.io.Serializable getPrimaryKeyObj() {
137         return _journalContentSearch.getPrimaryKeyObj();
138     }
139 
140     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
141         return _journalContentSearch.getExpandoBridge();
142     }
143 
144     public void setExpandoBridgeAttributes(
145         com.liferay.portal.service.ServiceContext serviceContext) {
146         _journalContentSearch.setExpandoBridgeAttributes(serviceContext);
147     }
148 
149     public java.lang.Object clone() {
150         return _journalContentSearch.clone();
151     }
152 
153     public int compareTo(
154         com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch) {
155         return _journalContentSearch.compareTo(journalContentSearch);
156     }
157 
158     public int hashCode() {
159         return _journalContentSearch.hashCode();
160     }
161 
162     public java.lang.String toString() {
163         return _journalContentSearch.toString();
164     }
165 
166     public java.lang.String toXmlString() {
167         return _journalContentSearch.toXmlString();
168     }
169 
170     public JournalContentSearch getWrappedJournalContentSearch() {
171         return _journalContentSearch;
172     }
173 
174     private JournalContentSearch _journalContentSearch;
175 }