001    /**
002     * Copyright (c) 2000-present 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.portal.service.persistence;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    /**
020     * @author Brian Wing Shun Chan
021     * @generated
022     */
023    @ProviderType
024    public interface TeamFinder {
025            public int countByG_N_D(long groupId, java.lang.String name,
026                    java.lang.String description,
027                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params);
028    
029            public int filterCountByG_N_D(long groupId, java.lang.String name,
030                    java.lang.String description,
031                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params);
032    
033            public java.util.List<com.liferay.portal.model.Team> filterFindByG_N_D(
034                    long groupId, java.lang.String name, java.lang.String description,
035                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
036                    int start, int end,
037                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.Team> obc);
038    
039            public java.util.List<com.liferay.portal.model.Team> findByG_U(
040                    long groupId, long userId, int start, int end,
041                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.Team> obc);
042    
043            public java.util.List<com.liferay.portal.model.Team> findByG_N_D(
044                    long groupId, java.lang.String name, java.lang.String description,
045                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
046                    int start, int end,
047                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.Team> obc);
048    }