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.portlet.asset.service.persistence;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
020    import com.liferay.portal.kernel.util.ReferenceRegistry;
021    
022    /**
023     * @author Brian Wing Shun Chan
024     * @generated
025     */
026    @ProviderType
027    public class AssetEntryFinderUtil {
028            public static int countEntries(
029                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
030                    return getFinder().countEntries(entryQuery);
031            }
032    
033            public static java.util.List<com.liferay.portlet.asset.model.AssetEntry> findByDLFileEntryC_T(
034                    long classNameId, java.lang.String treePath) {
035                    return getFinder().findByDLFileEntryC_T(classNameId, treePath);
036            }
037    
038            public static java.util.List<com.liferay.portlet.asset.model.AssetEntry> findByDLFolderC_T(
039                    long classNameId, java.lang.String treePath) {
040                    return getFinder().findByDLFolderC_T(classNameId, treePath);
041            }
042    
043            public static java.util.List<com.liferay.portlet.asset.model.AssetEntry> findEntries(
044                    com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
045                    return getFinder().findEntries(entryQuery);
046            }
047    
048            public static AssetEntryFinder getFinder() {
049                    if (_finder == null) {
050                            _finder = (AssetEntryFinder)PortalBeanLocatorUtil.locate(AssetEntryFinder.class.getName());
051    
052                            ReferenceRegistry.registerReference(AssetEntryFinderUtil.class,
053                                    "_finder");
054                    }
055    
056                    return _finder;
057            }
058    
059            public void setFinder(AssetEntryFinder finder) {
060                    _finder = finder;
061    
062                    ReferenceRegistry.registerReference(AssetEntryFinderUtil.class,
063                            "_finder");
064            }
065    
066            private static AssetEntryFinder _finder;
067    }