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 AssetCategoryPropertyService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AssetCategoryPropertyService
025     * @generated
026     */
027    public class AssetCategoryPropertyServiceWrapper
028            implements AssetCategoryPropertyService {
029            public AssetCategoryPropertyServiceWrapper(
030                    AssetCategoryPropertyService assetCategoryPropertyService) {
031                    _assetCategoryPropertyService = assetCategoryPropertyService;
032            }
033    
034            public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
035                    long entryId, java.lang.String key, java.lang.String value)
036                    throws com.liferay.portal.kernel.exception.PortalException,
037                            com.liferay.portal.kernel.exception.SystemException {
038                    return _assetCategoryPropertyService.addCategoryProperty(entryId, key,
039                            value);
040            }
041    
042            public void deleteCategoryProperty(long categoryPropertyId)
043                    throws com.liferay.portal.kernel.exception.PortalException,
044                            com.liferay.portal.kernel.exception.SystemException {
045                    _assetCategoryPropertyService.deleteCategoryProperty(categoryPropertyId);
046            }
047    
048            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
049                    long entryId)
050                    throws com.liferay.portal.kernel.exception.SystemException {
051                    return _assetCategoryPropertyService.getCategoryProperties(entryId);
052            }
053    
054            public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
055                    long companyId, java.lang.String key)
056                    throws com.liferay.portal.kernel.exception.SystemException {
057                    return _assetCategoryPropertyService.getCategoryPropertyValues(companyId,
058                            key);
059            }
060    
061            public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
062                    long categoryPropertyId, java.lang.String key, java.lang.String value)
063                    throws com.liferay.portal.kernel.exception.PortalException,
064                            com.liferay.portal.kernel.exception.SystemException {
065                    return _assetCategoryPropertyService.updateCategoryProperty(categoryPropertyId,
066                            key, value);
067            }
068    
069            public AssetCategoryPropertyService getWrappedAssetCategoryPropertyService() {
070                    return _assetCategoryPropertyService;
071            }
072    
073            private AssetCategoryPropertyService _assetCategoryPropertyService;
074    }