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.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_C_A_S(long groupId, long userId,
036                    long[] categoryIds, boolean anonymous, int status)
037                    throws com.liferay.portal.kernel.exception.SystemException;
038    
039            public java.util.List<java.lang.Long> filterFindByG_U_C_S(long groupId,
040                    long userId, long[] categoryIds, int status, int start, int end)
041                    throws com.liferay.portal.kernel.exception.SystemException;
042    
043            public java.util.List<java.lang.Long> filterFindByG_U_C_A_S(long groupId,
044                    long userId, long[] categoryIds, boolean anonymous, int status,
045                    int start, int end)
046                    throws com.liferay.portal.kernel.exception.SystemException;
047    
048            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
049                    throws com.liferay.portal.kernel.exception.SystemException;
050    
051            public java.util.List<java.lang.Long> findByG_U_C_S(long groupId,
052                    long userId, long[] categoryIds, int status, int start, int end)
053                    throws com.liferay.portal.kernel.exception.SystemException;
054    
055            public java.util.List<java.lang.Long> findByG_U_C_A_S(long groupId,
056                    long userId, long[] categoryIds, boolean anonymous, int status,
057                    int start, int end)
058                    throws com.liferay.portal.kernel.exception.SystemException;
059    }