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="AssetCategoryPropertyLocalServiceUtil.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 AssetCategoryPropertyLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetCategoryPropertyLocalService
32   * @generated
33   */
34  public class AssetCategoryPropertyLocalServiceWrapper
35      implements AssetCategoryPropertyLocalService {
36      public AssetCategoryPropertyLocalServiceWrapper(
37          AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
38          _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
39      }
40  
41      public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
42          com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
43          throws com.liferay.portal.kernel.exception.SystemException {
44          return _assetCategoryPropertyLocalService.addAssetCategoryProperty(assetCategoryProperty);
45      }
46  
47      public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
48          long categoryPropertyId) {
49          return _assetCategoryPropertyLocalService.createAssetCategoryProperty(categoryPropertyId);
50      }
51  
52      public void deleteAssetCategoryProperty(long categoryPropertyId)
53          throws com.liferay.portal.kernel.exception.PortalException,
54              com.liferay.portal.kernel.exception.SystemException {
55          _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(categoryPropertyId);
56      }
57  
58      public void deleteAssetCategoryProperty(
59          com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(assetCategoryProperty);
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 _assetCategoryPropertyLocalService.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 _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
76              start, 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 _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
86              start, 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 _assetCategoryPropertyLocalService.dynamicQueryCount(dynamicQuery);
93      }
94  
95      public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
96          long categoryPropertyId)
97          throws com.liferay.portal.kernel.exception.PortalException,
98              com.liferay.portal.kernel.exception.SystemException {
99          return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
100     }
101 
102     public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
103         int start, int end)
104         throws com.liferay.portal.kernel.exception.SystemException {
105         return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
106             end);
107     }
108 
109     public int getAssetCategoryPropertiesCount()
110         throws com.liferay.portal.kernel.exception.SystemException {
111         return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
112     }
113 
114     public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
115         com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
116         throws com.liferay.portal.kernel.exception.SystemException {
117         return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
118     }
119 
120     public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
121         com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
122         boolean merge)
123         throws com.liferay.portal.kernel.exception.SystemException {
124         return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
125             merge);
126     }
127 
128     public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
129         long userId, long categoryId, java.lang.String key,
130         java.lang.String value)
131         throws com.liferay.portal.kernel.exception.PortalException,
132             com.liferay.portal.kernel.exception.SystemException {
133         return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
134             categoryId, key, value);
135     }
136 
137     public void deleteCategoryProperties(long entryId)
138         throws com.liferay.portal.kernel.exception.SystemException {
139         _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
140     }
141 
142     public void deleteCategoryProperty(
143         com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
144         throws com.liferay.portal.kernel.exception.SystemException {
145         _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
146     }
147 
148     public void deleteCategoryProperty(long categoryPropertyId)
149         throws com.liferay.portal.kernel.exception.PortalException,
150             com.liferay.portal.kernel.exception.SystemException {
151         _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
152     }
153 
154     public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
155         throws com.liferay.portal.kernel.exception.SystemException {
156         return _assetCategoryPropertyLocalService.getCategoryProperties();
157     }
158 
159     public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
160         long entryId)
161         throws com.liferay.portal.kernel.exception.SystemException {
162         return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
163     }
164 
165     public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
166         long categoryPropertyId)
167         throws com.liferay.portal.kernel.exception.PortalException,
168             com.liferay.portal.kernel.exception.SystemException {
169         return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
170     }
171 
172     public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
173         long categoryId, java.lang.String key)
174         throws com.liferay.portal.kernel.exception.PortalException,
175             com.liferay.portal.kernel.exception.SystemException {
176         return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
177             key);
178     }
179 
180     public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
181         long groupId, java.lang.String key)
182         throws com.liferay.portal.kernel.exception.SystemException {
183         return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
184             key);
185     }
186 
187     public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
188         long categoryPropertyId, 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 _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
192             key, value);
193     }
194 
195     public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
196         return _assetCategoryPropertyLocalService;
197     }
198 
199     private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
200 }