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