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.documentlibrary.service.persistence;
16  
17  /**
18   * <a href="DLFolderFinder.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Brian Wing Shun Chan
21   */
22  public interface DLFolderFinder {
23      public int countF_FE_FS_ByG_F_S(long groupId,
24          java.util.List<java.lang.Long> folderIds, int status)
25          throws com.liferay.portal.kernel.exception.SystemException;
26  
27      public int countFE_FS_ByG_F_S(long groupId,
28          java.util.List<java.lang.Long> folderIds, int status)
29          throws com.liferay.portal.kernel.exception.SystemException;
30  
31      public int filterCountF_FE_FS_ByG_F_S(long groupId,
32          java.util.List<java.lang.Long> folderIds, int status)
33          throws com.liferay.portal.kernel.exception.SystemException;
34  
35      public int filterCountFE_FS_ByG_F_S(long groupId,
36          java.util.List<java.lang.Long> folderIds, int status)
37          throws com.liferay.portal.kernel.exception.SystemException;
38  
39      public java.util.List<java.lang.Object> filterFindF_FE_FS_ByG_F_S(
40          long groupId, java.util.List<java.lang.Long> folderIds, int status,
41          int start, int end)
42          throws com.liferay.portal.kernel.exception.SystemException;
43  
44      public java.util.List<java.lang.Object> filterFindFE_FS_ByG_F_S(
45          long groupId, java.util.List<java.lang.Long> folderIds, int status,
46          int start, int end)
47          throws com.liferay.portal.kernel.exception.SystemException;
48  
49      public java.util.List<java.lang.Object> findF_FE_FS_ByG_F_S(long groupId,
50          java.util.List<java.lang.Long> folderIds, int status, int start, int end)
51          throws com.liferay.portal.kernel.exception.SystemException;
52  
53      public java.util.List<java.lang.Object> findFE_FS_ByG_F_S(long groupId,
54          java.util.List<java.lang.Long> folderIds, int status, int start, int end)
55          throws com.liferay.portal.kernel.exception.SystemException;
56  }