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