001    /**
002     * Copyright (c) 2000-2011 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 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    }