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 AssetTagPropertyService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AssetTagPropertyService
025     * @generated
026     */
027    public class AssetTagPropertyServiceWrapper implements AssetTagPropertyService {
028            public AssetTagPropertyServiceWrapper(
029                    AssetTagPropertyService assetTagPropertyService) {
030                    _assetTagPropertyService = assetTagPropertyService;
031            }
032    
033            public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
034                    long tagId, 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 _assetTagPropertyService.addTagProperty(tagId, key, value);
038            }
039    
040            public void deleteTagProperty(long tagPropertyId)
041                    throws com.liferay.portal.kernel.exception.PortalException,
042                            com.liferay.portal.kernel.exception.SystemException {
043                    _assetTagPropertyService.deleteTagProperty(tagPropertyId);
044            }
045    
046            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
047                    long tagId) throws com.liferay.portal.kernel.exception.SystemException {
048                    return _assetTagPropertyService.getTagProperties(tagId);
049            }
050    
051            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
052                    long companyId, java.lang.String key)
053                    throws com.liferay.portal.kernel.exception.SystemException {
054                    return _assetTagPropertyService.getTagPropertyValues(companyId, key);
055            }
056    
057            public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
058                    long tagPropertyId, java.lang.String key, java.lang.String value)
059                    throws com.liferay.portal.kernel.exception.PortalException,
060                            com.liferay.portal.kernel.exception.SystemException {
061                    return _assetTagPropertyService.updateTagProperty(tagPropertyId, key,
062                            value);
063            }
064    
065            public AssetTagPropertyService getWrappedAssetTagPropertyService() {
066                    return _assetTagPropertyService;
067            }
068    
069            private AssetTagPropertyService _assetTagPropertyService;
070    }