1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.asset.service;
16  
17  
18  /**
19   * <a href="AssetTagPropertyServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link AssetTagPropertyService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetTagPropertyService
32   * @generated
33   */
34  public class AssetTagPropertyServiceWrapper implements AssetTagPropertyService {
35      public AssetTagPropertyServiceWrapper(
36          AssetTagPropertyService assetTagPropertyService) {
37          _assetTagPropertyService = assetTagPropertyService;
38      }
39  
40      public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
41          long tagId, java.lang.String key, java.lang.String value)
42          throws com.liferay.portal.kernel.exception.PortalException,
43              com.liferay.portal.kernel.exception.SystemException {
44          return _assetTagPropertyService.addTagProperty(tagId, key, value);
45      }
46  
47      public void deleteTagProperty(long tagPropertyId)
48          throws com.liferay.portal.kernel.exception.PortalException,
49              com.liferay.portal.kernel.exception.SystemException {
50          _assetTagPropertyService.deleteTagProperty(tagPropertyId);
51      }
52  
53      public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
54          long tagId) throws com.liferay.portal.kernel.exception.SystemException {
55          return _assetTagPropertyService.getTagProperties(tagId);
56      }
57  
58      public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
59          long companyId, java.lang.String key)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          return _assetTagPropertyService.getTagPropertyValues(companyId, key);
62      }
63  
64      public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
65          long tagPropertyId, java.lang.String key, java.lang.String value)
66          throws com.liferay.portal.kernel.exception.PortalException,
67              com.liferay.portal.kernel.exception.SystemException {
68          return _assetTagPropertyService.updateTagProperty(tagPropertyId, key,
69              value);
70      }
71  
72      public AssetTagPropertyService getWrappedAssetTagPropertyService() {
73          return _assetTagPropertyService;
74      }
75  
76      private AssetTagPropertyService _assetTagPropertyService;
77  }