1
14
15 package com.liferay.portlet.asset.service;
16
17
18
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 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.kernel.exception.SystemException {
73 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
74 start, end);
75 }
76
77 public java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.kernel.exception.SystemException {
82 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
83 start, end, orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.kernel.exception.SystemException {
89 return _assetCategoryPropertyLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
93 long categoryPropertyId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
97 }
98
99 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
103 end);
104 }
105
106 public int getAssetCategoryPropertiesCount()
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
109 }
110
111 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
112 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
113 throws com.liferay.portal.kernel.exception.SystemException {
114 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
115 }
116
117 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
118 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
119 boolean merge)
120 throws com.liferay.portal.kernel.exception.SystemException {
121 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
122 merge);
123 }
124
125 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
126 long userId, long categoryId, java.lang.String key,
127 java.lang.String value)
128 throws com.liferay.portal.kernel.exception.PortalException,
129 com.liferay.portal.kernel.exception.SystemException {
130 return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
131 categoryId, key, value);
132 }
133
134 public void deleteCategoryProperties(long entryId)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
137 }
138
139 public void deleteCategoryProperty(
140 com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
141 throws com.liferay.portal.kernel.exception.SystemException {
142 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
143 }
144
145 public void deleteCategoryProperty(long categoryPropertyId)
146 throws com.liferay.portal.kernel.exception.PortalException,
147 com.liferay.portal.kernel.exception.SystemException {
148 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
149 }
150
151 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
152 throws com.liferay.portal.kernel.exception.SystemException {
153 return _assetCategoryPropertyLocalService.getCategoryProperties();
154 }
155
156 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
157 long entryId)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
160 }
161
162 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
163 long categoryPropertyId)
164 throws com.liferay.portal.kernel.exception.PortalException,
165 com.liferay.portal.kernel.exception.SystemException {
166 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
167 }
168
169 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
170 long categoryId, java.lang.String key)
171 throws com.liferay.portal.kernel.exception.PortalException,
172 com.liferay.portal.kernel.exception.SystemException {
173 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
174 key);
175 }
176
177 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
178 long groupId, java.lang.String key)
179 throws com.liferay.portal.kernel.exception.SystemException {
180 return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
181 key);
182 }
183
184 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
185 long categoryPropertyId, java.lang.String key, java.lang.String value)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
189 key, value);
190 }
191
192 public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
193 return _assetCategoryPropertyLocalService;
194 }
195
196 private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
197 }