001
014
015 package com.liferay.portal.service;
016
017
026 public class PortletItemLocalServiceWrapper implements PortletItemLocalService,
027 ServiceWrapper<PortletItemLocalService> {
028 public PortletItemLocalServiceWrapper(
029 PortletItemLocalService portletItemLocalService) {
030 _portletItemLocalService = portletItemLocalService;
031 }
032
033
040 public com.liferay.portal.model.PortletItem addPortletItem(
041 com.liferay.portal.model.PortletItem portletItem)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _portletItemLocalService.addPortletItem(portletItem);
044 }
045
046
052 public com.liferay.portal.model.PortletItem createPortletItem(
053 long portletItemId) {
054 return _portletItemLocalService.createPortletItem(portletItemId);
055 }
056
057
064 public void deletePortletItem(long portletItemId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _portletItemLocalService.deletePortletItem(portletItemId);
068 }
069
070
076 public void deletePortletItem(
077 com.liferay.portal.model.PortletItem portletItem)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _portletItemLocalService.deletePortletItem(portletItem);
080 }
081
082
089 @SuppressWarnings("rawtypes")
090 public java.util.List dynamicQuery(
091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092 throws com.liferay.portal.kernel.exception.SystemException {
093 return _portletItemLocalService.dynamicQuery(dynamicQuery);
094 }
095
096
109 @SuppressWarnings("rawtypes")
110 public java.util.List dynamicQuery(
111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112 int end) throws com.liferay.portal.kernel.exception.SystemException {
113 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end);
114 }
115
116
130 @SuppressWarnings("rawtypes")
131 public java.util.List dynamicQuery(
132 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133 int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end,
137 orderByComparator);
138 }
139
140
147 public long dynamicQueryCount(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _portletItemLocalService.dynamicQueryCount(dynamicQuery);
151 }
152
153 public com.liferay.portal.model.PortletItem fetchPortletItem(
154 long portletItemId)
155 throws com.liferay.portal.kernel.exception.SystemException {
156 return _portletItemLocalService.fetchPortletItem(portletItemId);
157 }
158
159
167 public com.liferay.portal.model.PortletItem getPortletItem(
168 long portletItemId)
169 throws com.liferay.portal.kernel.exception.PortalException,
170 com.liferay.portal.kernel.exception.SystemException {
171 return _portletItemLocalService.getPortletItem(portletItemId);
172 }
173
174 public com.liferay.portal.model.PersistedModel getPersistedModel(
175 java.io.Serializable primaryKeyObj)
176 throws com.liferay.portal.kernel.exception.PortalException,
177 com.liferay.portal.kernel.exception.SystemException {
178 return _portletItemLocalService.getPersistedModel(primaryKeyObj);
179 }
180
181
193 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
194 int start, int end)
195 throws com.liferay.portal.kernel.exception.SystemException {
196 return _portletItemLocalService.getPortletItems(start, end);
197 }
198
199
205 public int getPortletItemsCount()
206 throws com.liferay.portal.kernel.exception.SystemException {
207 return _portletItemLocalService.getPortletItemsCount();
208 }
209
210
217 public com.liferay.portal.model.PortletItem updatePortletItem(
218 com.liferay.portal.model.PortletItem portletItem)
219 throws com.liferay.portal.kernel.exception.SystemException {
220 return _portletItemLocalService.updatePortletItem(portletItem);
221 }
222
223
231 public com.liferay.portal.model.PortletItem updatePortletItem(
232 com.liferay.portal.model.PortletItem portletItem, boolean merge)
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return _portletItemLocalService.updatePortletItem(portletItem, merge);
235 }
236
237
242 public java.lang.String getBeanIdentifier() {
243 return _portletItemLocalService.getBeanIdentifier();
244 }
245
246
251 public void setBeanIdentifier(java.lang.String beanIdentifier) {
252 _portletItemLocalService.setBeanIdentifier(beanIdentifier);
253 }
254
255 public com.liferay.portal.model.PortletItem addPortletItem(long userId,
256 long groupId, java.lang.String name, java.lang.String portletId,
257 java.lang.String className)
258 throws com.liferay.portal.kernel.exception.PortalException,
259 com.liferay.portal.kernel.exception.SystemException {
260 return _portletItemLocalService.addPortletItem(userId, groupId, name,
261 portletId, className);
262 }
263
264 public com.liferay.portal.model.PortletItem getPortletItem(long groupId,
265 java.lang.String name, java.lang.String portletId,
266 java.lang.String className)
267 throws com.liferay.portal.kernel.exception.PortalException,
268 com.liferay.portal.kernel.exception.SystemException {
269 return _portletItemLocalService.getPortletItem(groupId, name,
270 portletId, className);
271 }
272
273 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
274 long groupId, java.lang.String className)
275 throws com.liferay.portal.kernel.exception.SystemException {
276 return _portletItemLocalService.getPortletItems(groupId, className);
277 }
278
279 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
280 long groupId, java.lang.String portletId, java.lang.String className)
281 throws com.liferay.portal.kernel.exception.SystemException {
282 return _portletItemLocalService.getPortletItems(groupId, portletId,
283 className);
284 }
285
286 public com.liferay.portal.model.PortletItem updatePortletItem(long userId,
287 long groupId, java.lang.String name, java.lang.String portletId,
288 java.lang.String className)
289 throws com.liferay.portal.kernel.exception.PortalException,
290 com.liferay.portal.kernel.exception.SystemException {
291 return _portletItemLocalService.updatePortletItem(userId, groupId,
292 name, portletId, className);
293 }
294
295
298 public PortletItemLocalService getWrappedPortletItemLocalService() {
299 return _portletItemLocalService;
300 }
301
302
305 public void setWrappedPortletItemLocalService(
306 PortletItemLocalService portletItemLocalService) {
307 _portletItemLocalService = portletItemLocalService;
308 }
309
310 public PortletItemLocalService getWrappedService() {
311 return _portletItemLocalService;
312 }
313
314 public void setWrappedService(
315 PortletItemLocalService portletItemLocalService) {
316 _portletItemLocalService = portletItemLocalService;
317 }
318
319 private PortletItemLocalService _portletItemLocalService;
320 }