001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.asset.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetTagPropertyService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetTagPropertyService
024     * @generated
025     */
026    public class AssetTagPropertyServiceWrapper implements AssetTagPropertyService {
027            public AssetTagPropertyServiceWrapper(
028                    AssetTagPropertyService assetTagPropertyService) {
029                    _assetTagPropertyService = assetTagPropertyService;
030            }
031    
032            public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
033                    long tagId, java.lang.String key, java.lang.String value)
034                    throws com.liferay.portal.kernel.exception.PortalException,
035                            com.liferay.portal.kernel.exception.SystemException {
036                    return _assetTagPropertyService.addTagProperty(tagId, key, value);
037            }
038    
039            public void deleteTagProperty(long tagPropertyId)
040                    throws com.liferay.portal.kernel.exception.PortalException,
041                            com.liferay.portal.kernel.exception.SystemException {
042                    _assetTagPropertyService.deleteTagProperty(tagPropertyId);
043            }
044    
045            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
046                    long tagId) throws com.liferay.portal.kernel.exception.SystemException {
047                    return _assetTagPropertyService.getTagProperties(tagId);
048            }
049    
050            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
051                    long companyId, java.lang.String key)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    return _assetTagPropertyService.getTagPropertyValues(companyId, key);
054            }
055    
056            public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
057                    long tagPropertyId, java.lang.String key, java.lang.String value)
058                    throws com.liferay.portal.kernel.exception.PortalException,
059                            com.liferay.portal.kernel.exception.SystemException {
060                    return _assetTagPropertyService.updateTagProperty(tagPropertyId, key,
061                            value);
062            }
063    
064            public AssetTagPropertyService getWrappedAssetTagPropertyService() {
065                    return _assetTagPropertyService;
066            }
067    
068            private AssetTagPropertyService _assetTagPropertyService;
069    }