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