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.exportimport.kernel.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 ExportImportConfigurationFinder {
025            public int countByKeywords(long companyId, long groupId,
026                    java.lang.String keywords, int type, int status);
027    
028            public int countByC_G_N_D_T(long companyId, long groupId,
029                    java.lang.String name, java.lang.String description, int type,
030                    int status, boolean andOperator);
031    
032            public int filterCountByKeywords(long companyId, long groupId,
033                    java.lang.String keywords, int type, int status);
034    
035            public int filterCountByC_G_N_D_T(long companyId, long groupId,
036                    java.lang.String name, java.lang.String description, int type,
037                    int status, boolean andOperator);
038    
039            public int filterCountByC_G_N_D_T(long companyId, long groupId,
040                    java.lang.String[] names, java.lang.String[] descriptions, int type,
041                    int status, boolean andOperator);
042    
043            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> filterFindByKeywords(
044                    long companyId, long groupId, java.lang.String keywords, int type,
045                    int status, int start, int end,
046                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
047    
048            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> filterFindByC_G_N_D_T(
049                    long companyId, long groupId, java.lang.String name,
050                    java.lang.String description, int type, int status,
051                    boolean andOperator, int start, int end,
052                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
053    
054            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> filterFindByC_G_N_D_T(
055                    long companyId, long groupId, java.lang.String[] names,
056                    java.lang.String[] descriptions, int type, int status,
057                    boolean andOperator, int start, int end,
058                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
059    
060            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> findByKeywords(
061                    long companyId, long groupId, java.lang.String keywords, int type,
062                    int status, int start, int end,
063                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
064    
065            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> findByC_G_N_D_T(
066                    long companyId, long groupId, java.lang.String name,
067                    java.lang.String description, int type, int status,
068                    boolean andOperator, int start, int end,
069                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
070    
071            public java.util.List<com.liferay.exportimport.kernel.model.ExportImportConfiguration> findByC_G_N_D_T(
072                    long companyId, long groupId, java.lang.String[] names,
073                    java.lang.String[] descriptions, int type, int status,
074                    boolean andOperator, int start, int end,
075                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.exportimport.kernel.model.ExportImportConfiguration> orderByComparator);
076    }