001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.documentlibrary.service.persistence;
016    
017    import com.liferay.portal.service.persistence.BasePersistence;
018    
019    import com.liferay.portlet.documentlibrary.model.DLFileEntry;
020    
021    /**
022     * @author    Brian Wing Shun Chan
023     * @see       DLFileEntryPersistenceImpl
024     * @see       DLFileEntryUtil
025     * @generated
026     */
027    public interface DLFileEntryPersistence extends BasePersistence<DLFileEntry> {
028            public void cacheResult(
029                    com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry);
030    
031            public void cacheResult(
032                    java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> dlFileEntries);
033    
034            public com.liferay.portlet.documentlibrary.model.DLFileEntry create(
035                    long fileEntryId);
036    
037            public com.liferay.portlet.documentlibrary.model.DLFileEntry remove(
038                    long fileEntryId)
039                    throws com.liferay.portal.kernel.exception.SystemException,
040                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
041    
042            public com.liferay.portlet.documentlibrary.model.DLFileEntry updateImpl(
043                    com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry,
044                    boolean merge)
045                    throws com.liferay.portal.kernel.exception.SystemException;
046    
047            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByPrimaryKey(
048                    long fileEntryId)
049                    throws com.liferay.portal.kernel.exception.SystemException,
050                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
051    
052            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByPrimaryKey(
053                    long fileEntryId)
054                    throws com.liferay.portal.kernel.exception.SystemException;
055    
056            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByUuid(
057                    java.lang.String uuid)
058                    throws com.liferay.portal.kernel.exception.SystemException;
059    
060            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByUuid(
061                    java.lang.String uuid, int start, int end)
062                    throws com.liferay.portal.kernel.exception.SystemException;
063    
064            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByUuid(
065                    java.lang.String uuid, int start, int end,
066                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
067                    throws com.liferay.portal.kernel.exception.SystemException;
068    
069            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByUuid_First(
070                    java.lang.String uuid,
071                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
072                    throws com.liferay.portal.kernel.exception.SystemException,
073                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
074    
075            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByUuid_Last(
076                    java.lang.String uuid,
077                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
078                    throws com.liferay.portal.kernel.exception.SystemException,
079                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
080    
081            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByUuid_PrevAndNext(
082                    long fileEntryId, java.lang.String uuid,
083                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
084                    throws com.liferay.portal.kernel.exception.SystemException,
085                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
086    
087            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByUUID_G(
088                    java.lang.String uuid, long groupId)
089                    throws com.liferay.portal.kernel.exception.SystemException,
090                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
091    
092            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByUUID_G(
093                    java.lang.String uuid, long groupId)
094                    throws com.liferay.portal.kernel.exception.SystemException;
095    
096            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByUUID_G(
097                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
098                    throws com.liferay.portal.kernel.exception.SystemException;
099    
100            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByGroupId(
101                    long groupId)
102                    throws com.liferay.portal.kernel.exception.SystemException;
103    
104            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByGroupId(
105                    long groupId, int start, int end)
106                    throws com.liferay.portal.kernel.exception.SystemException;
107    
108            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByGroupId(
109                    long groupId, int start, int end,
110                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
111                    throws com.liferay.portal.kernel.exception.SystemException;
112    
113            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByGroupId_First(
114                    long groupId,
115                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
116                    throws com.liferay.portal.kernel.exception.SystemException,
117                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
118    
119            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByGroupId_Last(
120                    long groupId,
121                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
122                    throws com.liferay.portal.kernel.exception.SystemException,
123                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
124    
125            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByGroupId_PrevAndNext(
126                    long fileEntryId, long groupId,
127                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
128                    throws com.liferay.portal.kernel.exception.SystemException,
129                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
130    
131            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByGroupId(
132                    long groupId)
133                    throws com.liferay.portal.kernel.exception.SystemException;
134    
135            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByGroupId(
136                    long groupId, int start, int end)
137                    throws com.liferay.portal.kernel.exception.SystemException;
138    
139            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByGroupId(
140                    long groupId, int start, int end,
141                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
142                    throws com.liferay.portal.kernel.exception.SystemException;
143    
144            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByCompanyId(
145                    long companyId)
146                    throws com.liferay.portal.kernel.exception.SystemException;
147    
148            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByCompanyId(
149                    long companyId, int start, int end)
150                    throws com.liferay.portal.kernel.exception.SystemException;
151    
152            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByCompanyId(
153                    long companyId, int start, int end,
154                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
155                    throws com.liferay.portal.kernel.exception.SystemException;
156    
157            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByCompanyId_First(
158                    long companyId,
159                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
160                    throws com.liferay.portal.kernel.exception.SystemException,
161                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
162    
163            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByCompanyId_Last(
164                    long companyId,
165                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166                    throws com.liferay.portal.kernel.exception.SystemException,
167                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
168    
169            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByCompanyId_PrevAndNext(
170                    long fileEntryId, long companyId,
171                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
172                    throws com.liferay.portal.kernel.exception.SystemException,
173                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
174    
175            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U(
176                    long groupId, long userId)
177                    throws com.liferay.portal.kernel.exception.SystemException;
178    
179            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U(
180                    long groupId, long userId, int start, int end)
181                    throws com.liferay.portal.kernel.exception.SystemException;
182    
183            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U(
184                    long groupId, long userId, int start, int end,
185                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
186                    throws com.liferay.portal.kernel.exception.SystemException;
187    
188            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_U_First(
189                    long groupId, long userId,
190                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
191                    throws com.liferay.portal.kernel.exception.SystemException,
192                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
193    
194            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_U_Last(
195                    long groupId, long userId,
196                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
197                    throws com.liferay.portal.kernel.exception.SystemException,
198                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
199    
200            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByG_U_PrevAndNext(
201                    long fileEntryId, long groupId, long userId,
202                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
203                    throws com.liferay.portal.kernel.exception.SystemException,
204                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
205    
206            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U(
207                    long groupId, long userId)
208                    throws com.liferay.portal.kernel.exception.SystemException;
209    
210            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U(
211                    long groupId, long userId, int start, int end)
212                    throws com.liferay.portal.kernel.exception.SystemException;
213    
214            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U(
215                    long groupId, long userId, int start, int end,
216                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
217                    throws com.liferay.portal.kernel.exception.SystemException;
218    
219            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
220                    long groupId, long folderId)
221                    throws com.liferay.portal.kernel.exception.SystemException;
222    
223            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
224                    long groupId, long folderId, int start, int end)
225                    throws com.liferay.portal.kernel.exception.SystemException;
226    
227            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
228                    long groupId, long folderId, int start, int end,
229                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
230                    throws com.liferay.portal.kernel.exception.SystemException;
231    
232            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_F_First(
233                    long groupId, long folderId,
234                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
235                    throws com.liferay.portal.kernel.exception.SystemException,
236                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
237    
238            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_F_Last(
239                    long groupId, long folderId,
240                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
241                    throws com.liferay.portal.kernel.exception.SystemException,
242                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
243    
244            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByG_F_PrevAndNext(
245                    long fileEntryId, long groupId, long folderId,
246                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
247                    throws com.liferay.portal.kernel.exception.SystemException,
248                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
249    
250            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
251                    long groupId, long[] folderIds)
252                    throws com.liferay.portal.kernel.exception.SystemException;
253    
254            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
255                    long groupId, long[] folderIds, int start, int end)
256                    throws com.liferay.portal.kernel.exception.SystemException;
257    
258            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_F(
259                    long groupId, long[] folderIds, int start, int end,
260                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
261                    throws com.liferay.portal.kernel.exception.SystemException;
262    
263            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
264                    long groupId, long folderId)
265                    throws com.liferay.portal.kernel.exception.SystemException;
266    
267            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
268                    long groupId, long folderId, int start, int end)
269                    throws com.liferay.portal.kernel.exception.SystemException;
270    
271            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
272                    long groupId, long folderId, int start, int end,
273                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
274                    throws com.liferay.portal.kernel.exception.SystemException;
275    
276            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
277                    long groupId, long[] folderIds)
278                    throws com.liferay.portal.kernel.exception.SystemException;
279    
280            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
281                    long groupId, long[] folderIds, int start, int end)
282                    throws com.liferay.portal.kernel.exception.SystemException;
283    
284            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_F(
285                    long groupId, long[] folderIds, int start, int end,
286                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
287                    throws com.liferay.portal.kernel.exception.SystemException;
288    
289            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
290                    long groupId, long userId, long folderId)
291                    throws com.liferay.portal.kernel.exception.SystemException;
292    
293            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
294                    long groupId, long userId, long folderId, int start, int end)
295                    throws com.liferay.portal.kernel.exception.SystemException;
296    
297            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
298                    long groupId, long userId, long folderId, int start, int end,
299                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
300                    throws com.liferay.portal.kernel.exception.SystemException;
301    
302            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_U_F_First(
303                    long groupId, long userId, long folderId,
304                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
305                    throws com.liferay.portal.kernel.exception.SystemException,
306                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
307    
308            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_U_F_Last(
309                    long groupId, long userId, long folderId,
310                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
311                    throws com.liferay.portal.kernel.exception.SystemException,
312                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
313    
314            public com.liferay.portlet.documentlibrary.model.DLFileEntry[] findByG_U_F_PrevAndNext(
315                    long fileEntryId, long groupId, long userId, long folderId,
316                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
317                    throws com.liferay.portal.kernel.exception.SystemException,
318                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
319    
320            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
321                    long groupId, long userId, long[] folderIds)
322                    throws com.liferay.portal.kernel.exception.SystemException;
323    
324            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
325                    long groupId, long userId, long[] folderIds, int start, int end)
326                    throws com.liferay.portal.kernel.exception.SystemException;
327    
328            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U_F(
329                    long groupId, long userId, long[] folderIds, int start, int end,
330                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
331                    throws com.liferay.portal.kernel.exception.SystemException;
332    
333            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
334                    long groupId, long userId, long folderId)
335                    throws com.liferay.portal.kernel.exception.SystemException;
336    
337            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
338                    long groupId, long userId, long folderId, int start, int end)
339                    throws com.liferay.portal.kernel.exception.SystemException;
340    
341            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
342                    long groupId, long userId, long folderId, int start, int end,
343                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
344                    throws com.liferay.portal.kernel.exception.SystemException;
345    
346            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
347                    long groupId, long userId, long[] folderIds)
348                    throws com.liferay.portal.kernel.exception.SystemException;
349    
350            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
351                    long groupId, long userId, long[] folderIds, int start, int end)
352                    throws com.liferay.portal.kernel.exception.SystemException;
353    
354            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> filterFindByG_U_F(
355                    long groupId, long userId, long[] folderIds, int start, int end,
356                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
357                    throws com.liferay.portal.kernel.exception.SystemException;
358    
359            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_F_N(
360                    long groupId, long folderId, java.lang.String name)
361                    throws com.liferay.portal.kernel.exception.SystemException,
362                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
363    
364            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByG_F_N(
365                    long groupId, long folderId, java.lang.String name)
366                    throws com.liferay.portal.kernel.exception.SystemException;
367    
368            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByG_F_N(
369                    long groupId, long folderId, java.lang.String name,
370                    boolean retrieveFromCache)
371                    throws com.liferay.portal.kernel.exception.SystemException;
372    
373            public com.liferay.portlet.documentlibrary.model.DLFileEntry findByG_F_T(
374                    long groupId, long folderId, java.lang.String title)
375                    throws com.liferay.portal.kernel.exception.SystemException,
376                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
377    
378            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByG_F_T(
379                    long groupId, long folderId, java.lang.String title)
380                    throws com.liferay.portal.kernel.exception.SystemException;
381    
382            public com.liferay.portlet.documentlibrary.model.DLFileEntry fetchByG_F_T(
383                    long groupId, long folderId, java.lang.String title,
384                    boolean retrieveFromCache)
385                    throws com.liferay.portal.kernel.exception.SystemException;
386    
387            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findAll()
388                    throws com.liferay.portal.kernel.exception.SystemException;
389    
390            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findAll(
391                    int start, int end)
392                    throws com.liferay.portal.kernel.exception.SystemException;
393    
394            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findAll(
395                    int start, int end,
396                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
397                    throws com.liferay.portal.kernel.exception.SystemException;
398    
399            public void removeByUuid(java.lang.String uuid)
400                    throws com.liferay.portal.kernel.exception.SystemException;
401    
402            public void removeByUUID_G(java.lang.String uuid, long groupId)
403                    throws com.liferay.portal.kernel.exception.SystemException,
404                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
405    
406            public void removeByGroupId(long groupId)
407                    throws com.liferay.portal.kernel.exception.SystemException;
408    
409            public void removeByCompanyId(long companyId)
410                    throws com.liferay.portal.kernel.exception.SystemException;
411    
412            public void removeByG_U(long groupId, long userId)
413                    throws com.liferay.portal.kernel.exception.SystemException;
414    
415            public void removeByG_F(long groupId, long folderId)
416                    throws com.liferay.portal.kernel.exception.SystemException;
417    
418            public void removeByG_U_F(long groupId, long userId, long folderId)
419                    throws com.liferay.portal.kernel.exception.SystemException;
420    
421            public void removeByG_F_N(long groupId, long folderId, java.lang.String name)
422                    throws com.liferay.portal.kernel.exception.SystemException,
423                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
424    
425            public void removeByG_F_T(long groupId, long folderId,
426                    java.lang.String title)
427                    throws com.liferay.portal.kernel.exception.SystemException,
428                            com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
429    
430            public void removeAll()
431                    throws com.liferay.portal.kernel.exception.SystemException;
432    
433            public int countByUuid(java.lang.String uuid)
434                    throws com.liferay.portal.kernel.exception.SystemException;
435    
436            public int countByUUID_G(java.lang.String uuid, long groupId)
437                    throws com.liferay.portal.kernel.exception.SystemException;
438    
439            public int countByGroupId(long groupId)
440                    throws com.liferay.portal.kernel.exception.SystemException;
441    
442            public int filterCountByGroupId(long groupId)
443                    throws com.liferay.portal.kernel.exception.SystemException;
444    
445            public int countByCompanyId(long companyId)
446                    throws com.liferay.portal.kernel.exception.SystemException;
447    
448            public int countByG_U(long groupId, long userId)
449                    throws com.liferay.portal.kernel.exception.SystemException;
450    
451            public int filterCountByG_U(long groupId, long userId)
452                    throws com.liferay.portal.kernel.exception.SystemException;
453    
454            public int countByG_F(long groupId, long folderId)
455                    throws com.liferay.portal.kernel.exception.SystemException;
456    
457            public int countByG_F(long groupId, long[] folderIds)
458                    throws com.liferay.portal.kernel.exception.SystemException;
459    
460            public int filterCountByG_F(long groupId, long folderId)
461                    throws com.liferay.portal.kernel.exception.SystemException;
462    
463            public int filterCountByG_F(long groupId, long[] folderIds)
464                    throws com.liferay.portal.kernel.exception.SystemException;
465    
466            public int countByG_U_F(long groupId, long userId, long folderId)
467                    throws com.liferay.portal.kernel.exception.SystemException;
468    
469            public int countByG_U_F(long groupId, long userId, long[] folderIds)
470                    throws com.liferay.portal.kernel.exception.SystemException;
471    
472            public int filterCountByG_U_F(long groupId, long userId, long folderId)
473                    throws com.liferay.portal.kernel.exception.SystemException;
474    
475            public int filterCountByG_U_F(long groupId, long userId, long[] folderIds)
476                    throws com.liferay.portal.kernel.exception.SystemException;
477    
478            public int countByG_F_N(long groupId, long folderId, java.lang.String name)
479                    throws com.liferay.portal.kernel.exception.SystemException;
480    
481            public int filterCountByG_F_N(long groupId, long folderId,
482                    java.lang.String name)
483                    throws com.liferay.portal.kernel.exception.SystemException;
484    
485            public int countByG_F_T(long groupId, long folderId, java.lang.String title)
486                    throws com.liferay.portal.kernel.exception.SystemException;
487    
488            public int filterCountByG_F_T(long groupId, long folderId,
489                    java.lang.String title)
490                    throws com.liferay.portal.kernel.exception.SystemException;
491    
492            public int countAll()
493                    throws com.liferay.portal.kernel.exception.SystemException;
494    }