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