001    /**
002     * Copyright (c) 2000-2013 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.messageboards.service.persistence;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     */
020    public interface MBMessageFinder {
021            public int countByC_T(java.util.Date createDate, long threadId)
022                    throws com.liferay.portal.kernel.exception.SystemException;
023    
024            public int countByG_U_C_S(long groupId, long userId, long[] categoryIds,
025                    int status) throws com.liferay.portal.kernel.exception.SystemException;
026    
027            public int countByG_U_C_A_S(long groupId, long userId, long[] categoryIds,
028                    boolean anonymous, int status)
029                    throws com.liferay.portal.kernel.exception.SystemException;
030    
031            public int filterCountByG_U_C_S(long groupId, long userId,
032                    long[] categoryIds, int status)
033                    throws com.liferay.portal.kernel.exception.SystemException;
034    
035            public int filterCountByG_U_MD_C_S(long groupId, long userId,
036                    java.util.Date modifiedDate, long[] categoryIds, int status)
037                    throws com.liferay.portal.kernel.exception.SystemException;
038    
039            public int filterCountByG_U_C_A_S(long groupId, long userId,
040                    long[] categoryIds, boolean anonymous, int status)
041                    throws com.liferay.portal.kernel.exception.SystemException;
042    
043            public java.util.List<java.lang.Long> filterFindByG_U_C_S(long groupId,
044                    long userId, long[] categoryIds, int status, int start, int end)
045                    throws com.liferay.portal.kernel.exception.SystemException;
046    
047            public java.util.List<java.lang.Long> filterFindByG_U_MD_C_S(long groupId,
048                    long userId, java.util.Date modifiedDate, long[] categoryIds,
049                    int status, int start, int end)
050                    throws com.liferay.portal.kernel.exception.SystemException;
051    
052            public java.util.List<java.lang.Long> filterFindByG_U_C_A_S(long groupId,
053                    long userId, long[] categoryIds, boolean anonymous, int status,
054                    int start, int end)
055                    throws com.liferay.portal.kernel.exception.SystemException;
056    
057            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
058                    throws com.liferay.portal.kernel.exception.SystemException;
059    
060            public java.util.List<java.lang.Long> findByG_U_C_S(long groupId,
061                    long userId, long[] categoryIds, int status, int start, int end)
062                    throws com.liferay.portal.kernel.exception.SystemException;
063    
064            public java.util.List<java.lang.Long> findByG_U_C_A_S(long groupId,
065                    long userId, long[] categoryIds, boolean anonymous, int status,
066                    int start, int end)
067                    throws com.liferay.portal.kernel.exception.SystemException;
068    }