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