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="AssetTagPropertyLocalServiceUtil.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 AssetTagPropertyLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetTagPropertyLocalService
32   * @generated
33   */
34  public class AssetTagPropertyLocalServiceWrapper
35      implements AssetTagPropertyLocalService {
36      public AssetTagPropertyLocalServiceWrapper(
37          AssetTagPropertyLocalService assetTagPropertyLocalService) {
38          _assetTagPropertyLocalService = assetTagPropertyLocalService;
39      }
40  
41      public com.liferay.portlet.asset.model.AssetTagProperty addAssetTagProperty(
42          com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
43          throws com.liferay.portal.kernel.exception.SystemException {
44          return _assetTagPropertyLocalService.addAssetTagProperty(assetTagProperty);
45      }
46  
47      public com.liferay.portlet.asset.model.AssetTagProperty createAssetTagProperty(
48          long tagPropertyId) {
49          return _assetTagPropertyLocalService.createAssetTagProperty(tagPropertyId);
50      }
51  
52      public void deleteAssetTagProperty(long tagPropertyId)
53          throws com.liferay.portal.kernel.exception.PortalException,
54              com.liferay.portal.kernel.exception.SystemException {
55          _assetTagPropertyLocalService.deleteAssetTagProperty(tagPropertyId);
56      }
57  
58      public void deleteAssetTagProperty(
59          com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          _assetTagPropertyLocalService.deleteAssetTagProperty(assetTagProperty);
62      }
63  
64      @SuppressWarnings("unchecked")
65      public java.util.List dynamicQuery(
66          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
67          throws com.liferay.portal.kernel.exception.SystemException {
68          return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery);
69      }
70  
71      @SuppressWarnings("unchecked")
72      public java.util.List dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74          int end) throws com.liferay.portal.kernel.exception.SystemException {
75          return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
76              end);
77      }
78  
79      @SuppressWarnings("unchecked")
80      public java.util.List dynamicQuery(
81          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
82          int end,
83          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
86              end, orderByComparator);
87      }
88  
89      public long dynamicQueryCount(
90          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
91          throws com.liferay.portal.kernel.exception.SystemException {
92          return _assetTagPropertyLocalService.dynamicQueryCount(dynamicQuery);
93      }
94  
95      public com.liferay.portlet.asset.model.AssetTagProperty getAssetTagProperty(
96          long tagPropertyId)
97          throws com.liferay.portal.kernel.exception.PortalException,
98              com.liferay.portal.kernel.exception.SystemException {
99          return _assetTagPropertyLocalService.getAssetTagProperty(tagPropertyId);
100     }
101 
102     public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getAssetTagProperties(
103         int start, int end)
104         throws com.liferay.portal.kernel.exception.SystemException {
105         return _assetTagPropertyLocalService.getAssetTagProperties(start, end);
106     }
107 
108     public int getAssetTagPropertiesCount()
109         throws com.liferay.portal.kernel.exception.SystemException {
110         return _assetTagPropertyLocalService.getAssetTagPropertiesCount();
111     }
112 
113     public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
114         com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
115         throws com.liferay.portal.kernel.exception.SystemException {
116         return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty);
117     }
118 
119     public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
120         com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty,
121         boolean merge)
122         throws com.liferay.portal.kernel.exception.SystemException {
123         return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty,
124             merge);
125     }
126 
127     public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
128         long userId, long tagId, java.lang.String key, java.lang.String value)
129         throws com.liferay.portal.kernel.exception.PortalException,
130             com.liferay.portal.kernel.exception.SystemException {
131         return _assetTagPropertyLocalService.addTagProperty(userId, tagId, key,
132             value);
133     }
134 
135     public void deleteTagProperties(long tagId)
136         throws com.liferay.portal.kernel.exception.SystemException {
137         _assetTagPropertyLocalService.deleteTagProperties(tagId);
138     }
139 
140     public void deleteTagProperty(
141         com.liferay.portlet.asset.model.AssetTagProperty tagProperty)
142         throws com.liferay.portal.kernel.exception.SystemException {
143         _assetTagPropertyLocalService.deleteTagProperty(tagProperty);
144     }
145 
146     public void deleteTagProperty(long tagPropertyId)
147         throws com.liferay.portal.kernel.exception.PortalException,
148             com.liferay.portal.kernel.exception.SystemException {
149         _assetTagPropertyLocalService.deleteTagProperty(tagPropertyId);
150     }
151 
152     public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties()
153         throws com.liferay.portal.kernel.exception.SystemException {
154         return _assetTagPropertyLocalService.getTagProperties();
155     }
156 
157     public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
158         long tagId) throws com.liferay.portal.kernel.exception.SystemException {
159         return _assetTagPropertyLocalService.getTagProperties(tagId);
160     }
161 
162     public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
163         long tagPropertyId)
164         throws com.liferay.portal.kernel.exception.PortalException,
165             com.liferay.portal.kernel.exception.SystemException {
166         return _assetTagPropertyLocalService.getTagProperty(tagPropertyId);
167     }
168 
169     public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
170         long tagId, java.lang.String key)
171         throws com.liferay.portal.kernel.exception.PortalException,
172             com.liferay.portal.kernel.exception.SystemException {
173         return _assetTagPropertyLocalService.getTagProperty(tagId, key);
174     }
175 
176     public java.lang.String[] getTagPropertyKeys(long groupId)
177         throws com.liferay.portal.kernel.exception.SystemException {
178         return _assetTagPropertyLocalService.getTagPropertyKeys(groupId);
179     }
180 
181     public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
182         long groupId, java.lang.String key)
183         throws com.liferay.portal.kernel.exception.SystemException {
184         return _assetTagPropertyLocalService.getTagPropertyValues(groupId, key);
185     }
186 
187     public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
188         long tagPropertyId, java.lang.String key, java.lang.String value)
189         throws com.liferay.portal.kernel.exception.PortalException,
190             com.liferay.portal.kernel.exception.SystemException {
191         return _assetTagPropertyLocalService.updateTagProperty(tagPropertyId,
192             key, value);
193     }
194 
195     public AssetTagPropertyLocalService getWrappedAssetTagPropertyLocalService() {
196         return _assetTagPropertyLocalService;
197     }
198 
199     private AssetTagPropertyLocalService _assetTagPropertyLocalService;
200 }