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.blogs.service.persistence;
24  
25  import com.liferay.portal.PortalException;
26  import com.liferay.portal.SystemException;
27  import com.liferay.portal.kernel.annotation.Propagation;
28  import com.liferay.portal.kernel.annotation.Transactional;
29  import com.liferay.portal.service.persistence.BasePersistence;
30  
31  /**
32   * <a href="BlogsEntryPersistence.java.html"><b><i>View Source</i></b></a>
33   *
34   * @author Brian Wing Shun Chan
35   *
36   */
37  @Transactional(rollbackFor =  {
38      PortalException.class, SystemException.class})
39  public interface BlogsEntryPersistence extends BasePersistence {
40      public com.liferay.portlet.blogs.model.BlogsEntry create(long entryId);
41  
42      public com.liferay.portlet.blogs.model.BlogsEntry remove(long entryId)
43          throws com.liferay.portal.SystemException,
44              com.liferay.portlet.blogs.NoSuchEntryException;
45  
46      public com.liferay.portlet.blogs.model.BlogsEntry remove(
47          com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
48          throws com.liferay.portal.SystemException;
49  
50      /**
51       * @deprecated Use <code>update(BlogsEntry blogsEntry, boolean merge)</code>.
52       */
53      public com.liferay.portlet.blogs.model.BlogsEntry update(
54          com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
55          throws com.liferay.portal.SystemException;
56  
57      /**
58       * Add, update, or merge, the entity. This method also calls the model
59       * listeners to trigger the proper events associated with adding, deleting,
60       * or updating an entity.
61       *
62       * @param        blogsEntry the entity to add, update, or merge
63       * @param        merge boolean value for whether to merge the entity. The
64       *                default value is false. Setting merge to true is more
65       *                expensive and should only be true when blogsEntry is
66       *                transient. See LEP-5473 for a detailed discussion of this
67       *                method.
68       * @return        true if the portlet can be displayed via Ajax
69       */
70      public com.liferay.portlet.blogs.model.BlogsEntry update(
71          com.liferay.portlet.blogs.model.BlogsEntry blogsEntry, boolean merge)
72          throws com.liferay.portal.SystemException;
73  
74      public com.liferay.portlet.blogs.model.BlogsEntry updateImpl(
75          com.liferay.portlet.blogs.model.BlogsEntry blogsEntry, boolean merge)
76          throws com.liferay.portal.SystemException;
77  
78      @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
79      public com.liferay.portlet.blogs.model.BlogsEntry findByPrimaryKey(
80          long entryId)
81          throws com.liferay.portal.SystemException,
82              com.liferay.portlet.blogs.NoSuchEntryException;
83  
84      public com.liferay.portlet.blogs.model.BlogsEntry fetchByPrimaryKey(
85          long entryId) throws com.liferay.portal.SystemException;
86  
87      @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
88      public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
89          java.lang.String uuid) throws com.liferay.portal.SystemException;
90  
91      @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
92      public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
93          java.lang.String uuid, int start, int end)
94          throws com.liferay.portal.SystemException;
95  
96      @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
97      public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
98          java.lang.String uuid, int start, int end,
99          com.liferay.portal.kernel.util.OrderByComparator obc)
100         throws com.liferay.portal.SystemException;
101 
102     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
103     public com.liferay.portlet.blogs.model.BlogsEntry findByUuid_First(
104         java.lang.String uuid,
105         com.liferay.portal.kernel.util.OrderByComparator obc)
106         throws com.liferay.portal.SystemException,
107             com.liferay.portlet.blogs.NoSuchEntryException;
108 
109     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
110     public com.liferay.portlet.blogs.model.BlogsEntry findByUuid_Last(
111         java.lang.String uuid,
112         com.liferay.portal.kernel.util.OrderByComparator obc)
113         throws com.liferay.portal.SystemException,
114             com.liferay.portlet.blogs.NoSuchEntryException;
115 
116     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
117     public com.liferay.portlet.blogs.model.BlogsEntry[] findByUuid_PrevAndNext(
118         long entryId, java.lang.String uuid,
119         com.liferay.portal.kernel.util.OrderByComparator obc)
120         throws com.liferay.portal.SystemException,
121             com.liferay.portlet.blogs.NoSuchEntryException;
122 
123     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
124     public com.liferay.portlet.blogs.model.BlogsEntry findByUUID_G(
125         java.lang.String uuid, long groupId)
126         throws com.liferay.portal.SystemException,
127             com.liferay.portlet.blogs.NoSuchEntryException;
128 
129     public com.liferay.portlet.blogs.model.BlogsEntry fetchByUUID_G(
130         java.lang.String uuid, long groupId)
131         throws com.liferay.portal.SystemException;
132 
133     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
134     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
135         long groupId) throws com.liferay.portal.SystemException;
136 
137     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
138     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
139         long groupId, int start, int end)
140         throws com.liferay.portal.SystemException;
141 
142     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
143     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
144         long groupId, int start, int end,
145         com.liferay.portal.kernel.util.OrderByComparator obc)
146         throws com.liferay.portal.SystemException;
147 
148     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
149     public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_First(
150         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
151         throws com.liferay.portal.SystemException,
152             com.liferay.portlet.blogs.NoSuchEntryException;
153 
154     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
155     public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_Last(
156         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
157         throws com.liferay.portal.SystemException,
158             com.liferay.portlet.blogs.NoSuchEntryException;
159 
160     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
161     public com.liferay.portlet.blogs.model.BlogsEntry[] findByGroupId_PrevAndNext(
162         long entryId, long groupId,
163         com.liferay.portal.kernel.util.OrderByComparator obc)
164         throws com.liferay.portal.SystemException,
165             com.liferay.portlet.blogs.NoSuchEntryException;
166 
167     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
168     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
169         long companyId) throws com.liferay.portal.SystemException;
170 
171     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
172     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
173         long companyId, int start, int end)
174         throws com.liferay.portal.SystemException;
175 
176     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
177     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
178         long companyId, int start, int end,
179         com.liferay.portal.kernel.util.OrderByComparator obc)
180         throws com.liferay.portal.SystemException;
181 
182     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
183     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_First(
184         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
185         throws com.liferay.portal.SystemException,
186             com.liferay.portlet.blogs.NoSuchEntryException;
187 
188     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
189     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_Last(
190         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
191         throws com.liferay.portal.SystemException,
192             com.liferay.portlet.blogs.NoSuchEntryException;
193 
194     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
195     public com.liferay.portlet.blogs.model.BlogsEntry[] findByCompanyId_PrevAndNext(
196         long entryId, long companyId,
197         com.liferay.portal.kernel.util.OrderByComparator obc)
198         throws com.liferay.portal.SystemException,
199             com.liferay.portlet.blogs.NoSuchEntryException;
200 
201     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
202     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U(
203         long groupId, long userId) throws com.liferay.portal.SystemException;
204 
205     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
206     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U(
207         long groupId, long userId, int start, int end)
208         throws com.liferay.portal.SystemException;
209 
210     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
211     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U(
212         long groupId, long userId, int start, int end,
213         com.liferay.portal.kernel.util.OrderByComparator obc)
214         throws com.liferay.portal.SystemException;
215 
216     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
217     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_First(
218         long groupId, long userId,
219         com.liferay.portal.kernel.util.OrderByComparator obc)
220         throws com.liferay.portal.SystemException,
221             com.liferay.portlet.blogs.NoSuchEntryException;
222 
223     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
224     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_Last(
225         long groupId, long userId,
226         com.liferay.portal.kernel.util.OrderByComparator obc)
227         throws com.liferay.portal.SystemException,
228             com.liferay.portlet.blogs.NoSuchEntryException;
229 
230     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
231     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_PrevAndNext(
232         long entryId, long groupId, long userId,
233         com.liferay.portal.kernel.util.OrderByComparator obc)
234         throws com.liferay.portal.SystemException,
235             com.liferay.portlet.blogs.NoSuchEntryException;
236 
237     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
238     public com.liferay.portlet.blogs.model.BlogsEntry findByG_UT(long groupId,
239         java.lang.String urlTitle)
240         throws com.liferay.portal.SystemException,
241             com.liferay.portlet.blogs.NoSuchEntryException;
242 
243     public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
244         long groupId, java.lang.String urlTitle)
245         throws com.liferay.portal.SystemException;
246 
247     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
248     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_D(
249         long groupId, java.util.Date displayDate, boolean draft)
250         throws com.liferay.portal.SystemException;
251 
252     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
253     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_D(
254         long groupId, java.util.Date displayDate, boolean draft, int start,
255         int end) throws com.liferay.portal.SystemException;
256 
257     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
258     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_D(
259         long groupId, java.util.Date displayDate, boolean draft, int start,
260         int end, com.liferay.portal.kernel.util.OrderByComparator obc)
261         throws com.liferay.portal.SystemException;
262 
263     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
264     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_D_First(
265         long groupId, java.util.Date displayDate, boolean draft,
266         com.liferay.portal.kernel.util.OrderByComparator obc)
267         throws com.liferay.portal.SystemException,
268             com.liferay.portlet.blogs.NoSuchEntryException;
269 
270     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
271     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_D_Last(
272         long groupId, java.util.Date displayDate, boolean draft,
273         com.liferay.portal.kernel.util.OrderByComparator obc)
274         throws com.liferay.portal.SystemException,
275             com.liferay.portlet.blogs.NoSuchEntryException;
276 
277     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
278     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_D_PrevAndNext(
279         long entryId, long groupId, java.util.Date displayDate, boolean draft,
280         com.liferay.portal.kernel.util.OrderByComparator obc)
281         throws com.liferay.portal.SystemException,
282             com.liferay.portlet.blogs.NoSuchEntryException;
283 
284     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
285     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_D(
286         long companyId, java.util.Date displayDate, boolean draft)
287         throws com.liferay.portal.SystemException;
288 
289     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
290     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_D(
291         long companyId, java.util.Date displayDate, boolean draft, int start,
292         int end) throws com.liferay.portal.SystemException;
293 
294     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
295     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_D(
296         long companyId, java.util.Date displayDate, boolean draft, int start,
297         int end, com.liferay.portal.kernel.util.OrderByComparator obc)
298         throws com.liferay.portal.SystemException;
299 
300     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
301     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_D_First(
302         long companyId, java.util.Date displayDate, boolean draft,
303         com.liferay.portal.kernel.util.OrderByComparator obc)
304         throws com.liferay.portal.SystemException,
305             com.liferay.portlet.blogs.NoSuchEntryException;
306 
307     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
308     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_D_Last(
309         long companyId, java.util.Date displayDate, boolean draft,
310         com.liferay.portal.kernel.util.OrderByComparator obc)
311         throws com.liferay.portal.SystemException,
312             com.liferay.portlet.blogs.NoSuchEntryException;
313 
314     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
315     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_D_PrevAndNext(
316         long entryId, long companyId, java.util.Date displayDate,
317         boolean draft, com.liferay.portal.kernel.util.OrderByComparator obc)
318         throws com.liferay.portal.SystemException,
319             com.liferay.portlet.blogs.NoSuchEntryException;
320 
321     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
322     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_D(
323         long groupId, long userId, java.util.Date displayDate, boolean draft)
324         throws com.liferay.portal.SystemException;
325 
326     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
327     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_D(
328         long groupId, long userId, java.util.Date displayDate, boolean draft,
329         int start, int end) throws com.liferay.portal.SystemException;
330 
331     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
332     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_D(
333         long groupId, long userId, java.util.Date displayDate, boolean draft,
334         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
335         throws com.liferay.portal.SystemException;
336 
337     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
338     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_D_First(
339         long groupId, long userId, java.util.Date displayDate, boolean draft,
340         com.liferay.portal.kernel.util.OrderByComparator obc)
341         throws com.liferay.portal.SystemException,
342             com.liferay.portlet.blogs.NoSuchEntryException;
343 
344     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
345     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_D_Last(
346         long groupId, long userId, java.util.Date displayDate, boolean draft,
347         com.liferay.portal.kernel.util.OrderByComparator obc)
348         throws com.liferay.portal.SystemException,
349             com.liferay.portlet.blogs.NoSuchEntryException;
350 
351     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
352     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_D_PrevAndNext(
353         long entryId, long groupId, long userId, java.util.Date displayDate,
354         boolean draft, com.liferay.portal.kernel.util.OrderByComparator obc)
355         throws com.liferay.portal.SystemException,
356             com.liferay.portlet.blogs.NoSuchEntryException;
357 
358     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
359     public java.util.List<Object> findWithDynamicQuery(
360         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
361         throws com.liferay.portal.SystemException;
362 
363     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
364     public java.util.List<Object> findWithDynamicQuery(
365         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
366         int end) throws com.liferay.portal.SystemException;
367 
368     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
369     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll()
370         throws com.liferay.portal.SystemException;
371 
372     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
373     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
374         int start, int end) throws com.liferay.portal.SystemException;
375 
376     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
377     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
378         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
379         throws com.liferay.portal.SystemException;
380 
381     public void removeByUuid(java.lang.String uuid)
382         throws com.liferay.portal.SystemException;
383 
384     public void removeByUUID_G(java.lang.String uuid, long groupId)
385         throws com.liferay.portal.SystemException,
386             com.liferay.portlet.blogs.NoSuchEntryException;
387 
388     public void removeByGroupId(long groupId)
389         throws com.liferay.portal.SystemException;
390 
391     public void removeByCompanyId(long companyId)
392         throws com.liferay.portal.SystemException;
393 
394     public void removeByG_U(long groupId, long userId)
395         throws com.liferay.portal.SystemException;
396 
397     public void removeByG_UT(long groupId, java.lang.String urlTitle)
398         throws com.liferay.portal.SystemException,
399             com.liferay.portlet.blogs.NoSuchEntryException;
400 
401     public void removeByG_D_D(long groupId, java.util.Date displayDate,
402         boolean draft) throws com.liferay.portal.SystemException;
403 
404     public void removeByC_D_D(long companyId, java.util.Date displayDate,
405         boolean draft) throws com.liferay.portal.SystemException;
406 
407     public void removeByG_U_D_D(long groupId, long userId,
408         java.util.Date displayDate, boolean draft)
409         throws com.liferay.portal.SystemException;
410 
411     public void removeAll() throws com.liferay.portal.SystemException;
412 
413     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
414     public int countByUuid(java.lang.String uuid)
415         throws com.liferay.portal.SystemException;
416 
417     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
418     public int countByUUID_G(java.lang.String uuid, long groupId)
419         throws com.liferay.portal.SystemException;
420 
421     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
422     public int countByGroupId(long groupId)
423         throws com.liferay.portal.SystemException;
424 
425     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
426     public int countByCompanyId(long companyId)
427         throws com.liferay.portal.SystemException;
428 
429     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
430     public int countByG_U(long groupId, long userId)
431         throws com.liferay.portal.SystemException;
432 
433     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
434     public int countByG_UT(long groupId, java.lang.String urlTitle)
435         throws com.liferay.portal.SystemException;
436 
437     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
438     public int countByG_D_D(long groupId, java.util.Date displayDate,
439         boolean draft) throws com.liferay.portal.SystemException;
440 
441     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
442     public int countByC_D_D(long companyId, java.util.Date displayDate,
443         boolean draft) throws com.liferay.portal.SystemException;
444 
445     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
446     public int countByG_U_D_D(long groupId, long userId,
447         java.util.Date displayDate, boolean draft)
448         throws com.liferay.portal.SystemException;
449 
450     @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
451     public int countAll() throws com.liferay.portal.SystemException;
452 }