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.asset.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetCategoryPropertyLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetCategoryPropertyLocalService
024     * @generated
025     */
026    public class AssetCategoryPropertyLocalServiceWrapper
027            implements AssetCategoryPropertyLocalService {
028            public AssetCategoryPropertyLocalServiceWrapper(
029                    AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
030                    _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
031            }
032    
033            public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
034                    com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
035                    throws com.liferay.portal.kernel.exception.SystemException {
036                    return _assetCategoryPropertyLocalService.addAssetCategoryProperty(assetCategoryProperty);
037            }
038    
039            public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
040                    long categoryPropertyId) {
041                    return _assetCategoryPropertyLocalService.createAssetCategoryProperty(categoryPropertyId);
042            }
043    
044            public void deleteAssetCategoryProperty(long categoryPropertyId)
045                    throws com.liferay.portal.kernel.exception.PortalException,
046                            com.liferay.portal.kernel.exception.SystemException {
047                    _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(categoryPropertyId);
048            }
049    
050            public void deleteAssetCategoryProperty(
051                    com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(assetCategoryProperty);
054            }
055    
056            @SuppressWarnings("unchecked")
057            public java.util.List dynamicQuery(
058                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
059                    throws com.liferay.portal.kernel.exception.SystemException {
060                    return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery);
061            }
062    
063            @SuppressWarnings("unchecked")
064            public java.util.List dynamicQuery(
065                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066                    int end) throws com.liferay.portal.kernel.exception.SystemException {
067                    return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
068                            start, end);
069            }
070    
071            @SuppressWarnings("unchecked")
072            public java.util.List dynamicQuery(
073                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
074                    int end,
075                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
076                    throws com.liferay.portal.kernel.exception.SystemException {
077                    return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
078                            start, end, orderByComparator);
079            }
080    
081            public long dynamicQueryCount(
082                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
083                    throws com.liferay.portal.kernel.exception.SystemException {
084                    return _assetCategoryPropertyLocalService.dynamicQueryCount(dynamicQuery);
085            }
086    
087            public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
088                    long categoryPropertyId)
089                    throws com.liferay.portal.kernel.exception.PortalException,
090                            com.liferay.portal.kernel.exception.SystemException {
091                    return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
092            }
093    
094            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
095                    int start, int end)
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
098                            end);
099            }
100    
101            public int getAssetCategoryPropertiesCount()
102                    throws com.liferay.portal.kernel.exception.SystemException {
103                    return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
104            }
105    
106            public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
107                    com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
108                    throws com.liferay.portal.kernel.exception.SystemException {
109                    return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
110            }
111    
112            public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
113                    com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
114                    boolean merge)
115                    throws com.liferay.portal.kernel.exception.SystemException {
116                    return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
117                            merge);
118            }
119    
120            public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
121                    long userId, long categoryId, java.lang.String key,
122                    java.lang.String value)
123                    throws com.liferay.portal.kernel.exception.PortalException,
124                            com.liferay.portal.kernel.exception.SystemException {
125                    return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
126                            categoryId, key, value);
127            }
128    
129            public void deleteCategoryProperties(long entryId)
130                    throws com.liferay.portal.kernel.exception.SystemException {
131                    _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
132            }
133    
134            public void deleteCategoryProperty(
135                    com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
136                    throws com.liferay.portal.kernel.exception.SystemException {
137                    _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
138            }
139    
140            public void deleteCategoryProperty(long categoryPropertyId)
141                    throws com.liferay.portal.kernel.exception.PortalException,
142                            com.liferay.portal.kernel.exception.SystemException {
143                    _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
144            }
145    
146            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
147                    throws com.liferay.portal.kernel.exception.SystemException {
148                    return _assetCategoryPropertyLocalService.getCategoryProperties();
149            }
150    
151            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
152                    long entryId)
153                    throws com.liferay.portal.kernel.exception.SystemException {
154                    return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
155            }
156    
157            public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
158                    long categoryPropertyId)
159                    throws com.liferay.portal.kernel.exception.PortalException,
160                            com.liferay.portal.kernel.exception.SystemException {
161                    return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
162            }
163    
164            public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
165                    long categoryId, java.lang.String key)
166                    throws com.liferay.portal.kernel.exception.PortalException,
167                            com.liferay.portal.kernel.exception.SystemException {
168                    return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
169                            key);
170            }
171    
172            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
173                    long groupId, java.lang.String key)
174                    throws com.liferay.portal.kernel.exception.SystemException {
175                    return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
176                            key);
177            }
178    
179            public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
180                    long categoryPropertyId, java.lang.String key, java.lang.String value)
181                    throws com.liferay.portal.kernel.exception.PortalException,
182                            com.liferay.portal.kernel.exception.SystemException {
183                    return _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
184                            key, value);
185            }
186    
187            public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
188                    return _assetCategoryPropertyLocalService;
189            }
190    
191            private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
192    }