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.service;
24  
25  
26  /**
27   * <a href="JournalContentSearchLocalServiceUtil.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 JournalContentSearchLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       JournalContentSearchLocalService
40   * @generated
41   */
42  public class JournalContentSearchLocalServiceWrapper
43      implements JournalContentSearchLocalService {
44      public JournalContentSearchLocalServiceWrapper(
45          JournalContentSearchLocalService journalContentSearchLocalService) {
46          _journalContentSearchLocalService = journalContentSearchLocalService;
47      }
48  
49      public com.liferay.portlet.journal.model.JournalContentSearch addJournalContentSearch(
50          com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
51          throws com.liferay.portal.SystemException {
52          return _journalContentSearchLocalService.addJournalContentSearch(journalContentSearch);
53      }
54  
55      public com.liferay.portlet.journal.model.JournalContentSearch createJournalContentSearch(
56          long contentSearchId) {
57          return _journalContentSearchLocalService.createJournalContentSearch(contentSearchId);
58      }
59  
60      public void deleteJournalContentSearch(long contentSearchId)
61          throws com.liferay.portal.PortalException,
62              com.liferay.portal.SystemException {
63          _journalContentSearchLocalService.deleteJournalContentSearch(contentSearchId);
64      }
65  
66      public void deleteJournalContentSearch(
67          com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
68          throws com.liferay.portal.SystemException {
69          _journalContentSearchLocalService.deleteJournalContentSearch(journalContentSearch);
70      }
71  
72      public java.util.List<Object> dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74          throws com.liferay.portal.SystemException {
75          return _journalContentSearchLocalService.dynamicQuery(dynamicQuery);
76      }
77  
78      public java.util.List<Object> dynamicQuery(
79          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80          int end) throws com.liferay.portal.SystemException {
81          return _journalContentSearchLocalService.dynamicQuery(dynamicQuery,
82              start, end);
83      }
84  
85      public com.liferay.portlet.journal.model.JournalContentSearch getJournalContentSearch(
86          long contentSearchId)
87          throws com.liferay.portal.PortalException,
88              com.liferay.portal.SystemException {
89          return _journalContentSearchLocalService.getJournalContentSearch(contentSearchId);
90      }
91  
92      public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getJournalContentSearchs(
93          int start, int end) throws com.liferay.portal.SystemException {
94          return _journalContentSearchLocalService.getJournalContentSearchs(start,
95              end);
96      }
97  
98      public int getJournalContentSearchsCount()
99          throws com.liferay.portal.SystemException {
100         return _journalContentSearchLocalService.getJournalContentSearchsCount();
101     }
102 
103     public com.liferay.portlet.journal.model.JournalContentSearch updateJournalContentSearch(
104         com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
105         throws com.liferay.portal.SystemException {
106         return _journalContentSearchLocalService.updateJournalContentSearch(journalContentSearch);
107     }
108 
109     public com.liferay.portlet.journal.model.JournalContentSearch updateJournalContentSearch(
110         com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch,
111         boolean merge) throws com.liferay.portal.SystemException {
112         return _journalContentSearchLocalService.updateJournalContentSearch(journalContentSearch,
113             merge);
114     }
115 
116     public void checkContentSearches(long companyId)
117         throws com.liferay.portal.PortalException,
118             com.liferay.portal.SystemException {
119         _journalContentSearchLocalService.checkContentSearches(companyId);
120     }
121 
122     public void deleteArticleContentSearch(long groupId, boolean privateLayout,
123         long layoutId, java.lang.String portletId, java.lang.String articleId)
124         throws com.liferay.portal.PortalException,
125             com.liferay.portal.SystemException {
126         _journalContentSearchLocalService.deleteArticleContentSearch(groupId,
127             privateLayout, layoutId, portletId, articleId);
128     }
129 
130     public void deleteArticleContentSearches(long groupId,
131         java.lang.String articleId) throws com.liferay.portal.SystemException {
132         _journalContentSearchLocalService.deleteArticleContentSearches(groupId,
133             articleId);
134     }
135 
136     public void deleteLayoutContentSearches(long groupId,
137         boolean privateLayout, long layoutId)
138         throws com.liferay.portal.SystemException {
139         _journalContentSearchLocalService.deleteLayoutContentSearches(groupId,
140             privateLayout, layoutId);
141     }
142 
143     public void deleteOwnerContentSearches(long groupId, boolean privateLayout)
144         throws com.liferay.portal.SystemException {
145         _journalContentSearchLocalService.deleteOwnerContentSearches(groupId,
146             privateLayout);
147     }
148 
149     public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches()
150         throws com.liferay.portal.SystemException {
151         return _journalContentSearchLocalService.getArticleContentSearches();
152     }
153 
154     public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches(
155         long groupId, java.lang.String articleId)
156         throws com.liferay.portal.SystemException {
157         return _journalContentSearchLocalService.getArticleContentSearches(groupId,
158             articleId);
159     }
160 
161     public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches(
162         java.lang.String articleId) throws com.liferay.portal.SystemException {
163         return _journalContentSearchLocalService.getArticleContentSearches(articleId);
164     }
165 
166     public java.util.List<Long> getLayoutIds(long groupId,
167         boolean privateLayout, java.lang.String articleId)
168         throws com.liferay.portal.SystemException {
169         return _journalContentSearchLocalService.getLayoutIds(groupId,
170             privateLayout, articleId);
171     }
172 
173     public int getLayoutIdsCount(long groupId, boolean privateLayout,
174         java.lang.String articleId) throws com.liferay.portal.SystemException {
175         return _journalContentSearchLocalService.getLayoutIdsCount(groupId,
176             privateLayout, articleId);
177     }
178 
179     public int getLayoutIdsCount(java.lang.String articleId)
180         throws com.liferay.portal.SystemException {
181         return _journalContentSearchLocalService.getLayoutIdsCount(articleId);
182     }
183 
184     public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
185         long groupId, boolean privateLayout, long layoutId,
186         java.lang.String portletId, java.lang.String articleId)
187         throws com.liferay.portal.PortalException,
188             com.liferay.portal.SystemException {
189         return _journalContentSearchLocalService.updateContentSearch(groupId,
190             privateLayout, layoutId, portletId, articleId);
191     }
192 
193     public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
194         long groupId, boolean privateLayout, long layoutId,
195         java.lang.String portletId, java.lang.String articleId, boolean purge)
196         throws com.liferay.portal.PortalException,
197             com.liferay.portal.SystemException {
198         return _journalContentSearchLocalService.updateContentSearch(groupId,
199             privateLayout, layoutId, portletId, articleId, purge);
200     }
201 
202     public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> updateContentSearch(
203         long groupId, boolean privateLayout, long layoutId,
204         java.lang.String portletId, java.lang.String[] articleIds)
205         throws com.liferay.portal.PortalException,
206             com.liferay.portal.SystemException {
207         return _journalContentSearchLocalService.updateContentSearch(groupId,
208             privateLayout, layoutId, portletId, articleIds);
209     }
210 
211     public JournalContentSearchLocalService getWrappedJournalContentSearchLocalService() {
212         return _journalContentSearchLocalService;
213     }
214 
215     private JournalContentSearchLocalService _journalContentSearchLocalService;
216 }