1
14
15 package com.liferay.portlet.asset.service;
16
17
18
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 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 _assetTagPropertyLocalService.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 _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
74 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 _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
83 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 _assetTagPropertyLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.asset.model.AssetTagProperty getAssetTagProperty(
93 long tagPropertyId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _assetTagPropertyLocalService.getAssetTagProperty(tagPropertyId);
97 }
98
99 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getAssetTagProperties(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _assetTagPropertyLocalService.getAssetTagProperties(start, end);
103 }
104
105 public int getAssetTagPropertiesCount()
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _assetTagPropertyLocalService.getAssetTagPropertiesCount();
108 }
109
110 public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
111 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty);
114 }
115
116 public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
117 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty,
118 boolean merge)
119 throws com.liferay.portal.kernel.exception.SystemException {
120 return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty,
121 merge);
122 }
123
124 public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
125 long userId, long tagId, java.lang.String key, java.lang.String value)
126 throws com.liferay.portal.kernel.exception.PortalException,
127 com.liferay.portal.kernel.exception.SystemException {
128 return _assetTagPropertyLocalService.addTagProperty(userId, tagId, key,
129 value);
130 }
131
132 public void deleteTagProperties(long tagId)
133 throws com.liferay.portal.kernel.exception.SystemException {
134 _assetTagPropertyLocalService.deleteTagProperties(tagId);
135 }
136
137 public void deleteTagProperty(
138 com.liferay.portlet.asset.model.AssetTagProperty tagProperty)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 _assetTagPropertyLocalService.deleteTagProperty(tagProperty);
141 }
142
143 public void deleteTagProperty(long tagPropertyId)
144 throws com.liferay.portal.kernel.exception.PortalException,
145 com.liferay.portal.kernel.exception.SystemException {
146 _assetTagPropertyLocalService.deleteTagProperty(tagPropertyId);
147 }
148
149 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties()
150 throws com.liferay.portal.kernel.exception.SystemException {
151 return _assetTagPropertyLocalService.getTagProperties();
152 }
153
154 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
155 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
156 return _assetTagPropertyLocalService.getTagProperties(tagId);
157 }
158
159 public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
160 long tagPropertyId)
161 throws com.liferay.portal.kernel.exception.PortalException,
162 com.liferay.portal.kernel.exception.SystemException {
163 return _assetTagPropertyLocalService.getTagProperty(tagPropertyId);
164 }
165
166 public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
167 long tagId, java.lang.String key)
168 throws com.liferay.portal.kernel.exception.PortalException,
169 com.liferay.portal.kernel.exception.SystemException {
170 return _assetTagPropertyLocalService.getTagProperty(tagId, key);
171 }
172
173 public java.lang.String[] getTagPropertyKeys(long groupId)
174 throws com.liferay.portal.kernel.exception.SystemException {
175 return _assetTagPropertyLocalService.getTagPropertyKeys(groupId);
176 }
177
178 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
179 long groupId, java.lang.String key)
180 throws com.liferay.portal.kernel.exception.SystemException {
181 return _assetTagPropertyLocalService.getTagPropertyValues(groupId, key);
182 }
183
184 public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
185 long tagPropertyId, 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 _assetTagPropertyLocalService.updateTagProperty(tagPropertyId,
189 key, value);
190 }
191
192 public AssetTagPropertyLocalService getWrappedAssetTagPropertyLocalService() {
193 return _assetTagPropertyLocalService;
194 }
195
196 private AssetTagPropertyLocalService _assetTagPropertyLocalService;
197 }