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 AssetTagPropertyLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetTagPropertyLocalService
024     * @generated
025     */
026    public class AssetTagPropertyLocalServiceWrapper
027            implements AssetTagPropertyLocalService {
028            public AssetTagPropertyLocalServiceWrapper(
029                    AssetTagPropertyLocalService assetTagPropertyLocalService) {
030                    _assetTagPropertyLocalService = assetTagPropertyLocalService;
031            }
032    
033            public com.liferay.portlet.asset.model.AssetTagProperty addAssetTagProperty(
034                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
035                    throws com.liferay.portal.kernel.exception.SystemException {
036                    return _assetTagPropertyLocalService.addAssetTagProperty(assetTagProperty);
037            }
038    
039            public com.liferay.portlet.asset.model.AssetTagProperty createAssetTagProperty(
040                    long tagPropertyId) {
041                    return _assetTagPropertyLocalService.createAssetTagProperty(tagPropertyId);
042            }
043    
044            public void deleteAssetTagProperty(long tagPropertyId)
045                    throws com.liferay.portal.kernel.exception.PortalException,
046                            com.liferay.portal.kernel.exception.SystemException {
047                    _assetTagPropertyLocalService.deleteAssetTagProperty(tagPropertyId);
048            }
049    
050            public void deleteAssetTagProperty(
051                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    _assetTagPropertyLocalService.deleteAssetTagProperty(assetTagProperty);
054            }
055    
056            @SuppressWarnings("unchecked")
057            public java.util.List dynamicQuery(
058                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
059                    throws com.liferay.portal.kernel.exception.SystemException {
060                    return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery);
061            }
062    
063            @SuppressWarnings("unchecked")
064            public java.util.List dynamicQuery(
065                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066                    int end) throws com.liferay.portal.kernel.exception.SystemException {
067                    return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
068                            end);
069            }
070    
071            @SuppressWarnings("unchecked")
072            public java.util.List dynamicQuery(
073                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
074                    int end,
075                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
076                    throws com.liferay.portal.kernel.exception.SystemException {
077                    return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
078                            end, orderByComparator);
079            }
080    
081            public long dynamicQueryCount(
082                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
083                    throws com.liferay.portal.kernel.exception.SystemException {
084                    return _assetTagPropertyLocalService.dynamicQueryCount(dynamicQuery);
085            }
086    
087            public com.liferay.portlet.asset.model.AssetTagProperty getAssetTagProperty(
088                    long tagPropertyId)
089                    throws com.liferay.portal.kernel.exception.PortalException,
090                            com.liferay.portal.kernel.exception.SystemException {
091                    return _assetTagPropertyLocalService.getAssetTagProperty(tagPropertyId);
092            }
093    
094            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getAssetTagProperties(
095                    int start, int end)
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return _assetTagPropertyLocalService.getAssetTagProperties(start, end);
098            }
099    
100            public int getAssetTagPropertiesCount()
101                    throws com.liferay.portal.kernel.exception.SystemException {
102                    return _assetTagPropertyLocalService.getAssetTagPropertiesCount();
103            }
104    
105            public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
106                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
107                    throws com.liferay.portal.kernel.exception.SystemException {
108                    return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty);
109            }
110    
111            public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
112                    com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty,
113                    boolean merge)
114                    throws com.liferay.portal.kernel.exception.SystemException {
115                    return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty,
116                            merge);
117            }
118    
119            public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
120                    long userId, long tagId, java.lang.String key, java.lang.String value)
121                    throws com.liferay.portal.kernel.exception.PortalException,
122                            com.liferay.portal.kernel.exception.SystemException {
123                    return _assetTagPropertyLocalService.addTagProperty(userId, tagId, key,
124                            value);
125            }
126    
127            public void deleteTagProperties(long tagId)
128                    throws com.liferay.portal.kernel.exception.SystemException {
129                    _assetTagPropertyLocalService.deleteTagProperties(tagId);
130            }
131    
132            public void deleteTagProperty(
133                    com.liferay.portlet.asset.model.AssetTagProperty tagProperty)
134                    throws com.liferay.portal.kernel.exception.SystemException {
135                    _assetTagPropertyLocalService.deleteTagProperty(tagProperty);
136            }
137    
138            public void deleteTagProperty(long tagPropertyId)
139                    throws com.liferay.portal.kernel.exception.PortalException,
140                            com.liferay.portal.kernel.exception.SystemException {
141                    _assetTagPropertyLocalService.deleteTagProperty(tagPropertyId);
142            }
143    
144            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties()
145                    throws com.liferay.portal.kernel.exception.SystemException {
146                    return _assetTagPropertyLocalService.getTagProperties();
147            }
148    
149            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
150                    long tagId) throws com.liferay.portal.kernel.exception.SystemException {
151                    return _assetTagPropertyLocalService.getTagProperties(tagId);
152            }
153    
154            public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
155                    long tagPropertyId)
156                    throws com.liferay.portal.kernel.exception.PortalException,
157                            com.liferay.portal.kernel.exception.SystemException {
158                    return _assetTagPropertyLocalService.getTagProperty(tagPropertyId);
159            }
160    
161            public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
162                    long tagId, java.lang.String key)
163                    throws com.liferay.portal.kernel.exception.PortalException,
164                            com.liferay.portal.kernel.exception.SystemException {
165                    return _assetTagPropertyLocalService.getTagProperty(tagId, key);
166            }
167    
168            public java.lang.String[] getTagPropertyKeys(long groupId)
169                    throws com.liferay.portal.kernel.exception.SystemException {
170                    return _assetTagPropertyLocalService.getTagPropertyKeys(groupId);
171            }
172    
173            public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
174                    long groupId, java.lang.String key)
175                    throws com.liferay.portal.kernel.exception.SystemException {
176                    return _assetTagPropertyLocalService.getTagPropertyValues(groupId, key);
177            }
178    
179            public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
180                    long tagPropertyId, java.lang.String key, java.lang.String value)
181                    throws com.liferay.portal.kernel.exception.PortalException,
182                            com.liferay.portal.kernel.exception.SystemException {
183                    return _assetTagPropertyLocalService.updateTagProperty(tagPropertyId,
184                            key, value);
185            }
186    
187            public AssetTagPropertyLocalService getWrappedAssetTagPropertyLocalService() {
188                    return _assetTagPropertyLocalService;
189            }
190    
191            private AssetTagPropertyLocalService _assetTagPropertyLocalService;
192    }