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.asset.service.persistence;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.util.ReferenceRegistry;
019    
020    /**
021     * @author Brian Wing Shun Chan
022     */
023    public class AssetVocabularyFinderUtil {
024            public static int countByG_N(long groupId, java.lang.String name)
025                    throws com.liferay.portal.kernel.exception.SystemException {
026                    return getFinder().countByG_N(groupId, name);
027            }
028    
029            public static int filterCountByG_N(long groupId, java.lang.String name)
030                    throws com.liferay.portal.kernel.exception.SystemException {
031                    return getFinder().filterCountByG_N(groupId, name);
032            }
033    
034            public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_N(
035                    long groupId, java.lang.String name, int start, int end,
036                    com.liferay.portal.kernel.util.OrderByComparator obc)
037                    throws com.liferay.portal.kernel.exception.SystemException {
038                    return getFinder().filterFindByG_N(groupId, name, start, end, obc);
039            }
040    
041            public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_N(
042                    long groupId, java.lang.String name, int start, int end,
043                    com.liferay.portal.kernel.util.OrderByComparator obc)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return getFinder().findByG_N(groupId, name, start, end, obc);
046            }
047    
048            public static AssetVocabularyFinder getFinder() {
049                    if (_finder == null) {
050                            _finder = (AssetVocabularyFinder)PortalBeanLocatorUtil.locate(AssetVocabularyFinder.class.getName());
051    
052                            ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
053                                    "_finder");
054                    }
055    
056                    return _finder;
057            }
058    
059            public void setFinder(AssetVocabularyFinder finder) {
060                    _finder = finder;
061    
062                    ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
063                            "_finder");
064            }
065    
066            private static AssetVocabularyFinder _finder;
067    }