001
014
015 package com.liferay.portal.service;
016
017
026 public class PortletItemLocalServiceWrapper implements PortletItemLocalService {
027 public PortletItemLocalServiceWrapper(
028 PortletItemLocalService portletItemLocalService) {
029 _portletItemLocalService = portletItemLocalService;
030 }
031
032
039 public com.liferay.portal.model.PortletItem addPortletItem(
040 com.liferay.portal.model.PortletItem portletItem)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _portletItemLocalService.addPortletItem(portletItem);
043 }
044
045
051 public com.liferay.portal.model.PortletItem createPortletItem(
052 long portletItemId) {
053 return _portletItemLocalService.createPortletItem(portletItemId);
054 }
055
056
063 public void deletePortletItem(long portletItemId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 _portletItemLocalService.deletePortletItem(portletItemId);
067 }
068
069
075 public void deletePortletItem(
076 com.liferay.portal.model.PortletItem portletItem)
077 throws com.liferay.portal.kernel.exception.SystemException {
078 _portletItemLocalService.deletePortletItem(portletItem);
079 }
080
081
088 @SuppressWarnings("rawtypes")
089 public java.util.List dynamicQuery(
090 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
091 throws com.liferay.portal.kernel.exception.SystemException {
092 return _portletItemLocalService.dynamicQuery(dynamicQuery);
093 }
094
095
108 @SuppressWarnings("rawtypes")
109 public java.util.List dynamicQuery(
110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
111 int end) throws com.liferay.portal.kernel.exception.SystemException {
112 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end);
113 }
114
115
129 @SuppressWarnings("rawtypes")
130 public java.util.List dynamicQuery(
131 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
132 int end,
133 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
134 throws com.liferay.portal.kernel.exception.SystemException {
135 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end,
136 orderByComparator);
137 }
138
139
146 public long dynamicQueryCount(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
148 throws com.liferay.portal.kernel.exception.SystemException {
149 return _portletItemLocalService.dynamicQueryCount(dynamicQuery);
150 }
151
152
160 public com.liferay.portal.model.PortletItem getPortletItem(
161 long portletItemId)
162 throws com.liferay.portal.kernel.exception.PortalException,
163 com.liferay.portal.kernel.exception.SystemException {
164 return _portletItemLocalService.getPortletItem(portletItemId);
165 }
166
167 public com.liferay.portal.model.PersistedModel getPersistedModel(
168 java.io.Serializable primaryKeyObj)
169 throws com.liferay.portal.kernel.exception.PortalException,
170 com.liferay.portal.kernel.exception.SystemException {
171 return _portletItemLocalService.getPersistedModel(primaryKeyObj);
172 }
173
174
186 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
187 int start, int end)
188 throws com.liferay.portal.kernel.exception.SystemException {
189 return _portletItemLocalService.getPortletItems(start, end);
190 }
191
192
198 public int getPortletItemsCount()
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _portletItemLocalService.getPortletItemsCount();
201 }
202
203
210 public com.liferay.portal.model.PortletItem updatePortletItem(
211 com.liferay.portal.model.PortletItem portletItem)
212 throws com.liferay.portal.kernel.exception.SystemException {
213 return _portletItemLocalService.updatePortletItem(portletItem);
214 }
215
216
224 public com.liferay.portal.model.PortletItem updatePortletItem(
225 com.liferay.portal.model.PortletItem portletItem, boolean merge)
226 throws com.liferay.portal.kernel.exception.SystemException {
227 return _portletItemLocalService.updatePortletItem(portletItem, merge);
228 }
229
230
235 public java.lang.String getBeanIdentifier() {
236 return _portletItemLocalService.getBeanIdentifier();
237 }
238
239
244 public void setBeanIdentifier(java.lang.String beanIdentifier) {
245 _portletItemLocalService.setBeanIdentifier(beanIdentifier);
246 }
247
248 public com.liferay.portal.model.PortletItem addPortletItem(long userId,
249 long groupId, java.lang.String name, java.lang.String portletId,
250 java.lang.String className)
251 throws com.liferay.portal.kernel.exception.PortalException,
252 com.liferay.portal.kernel.exception.SystemException {
253 return _portletItemLocalService.addPortletItem(userId, groupId, name,
254 portletId, className);
255 }
256
257 public com.liferay.portal.model.PortletItem getPortletItem(long groupId,
258 java.lang.String name, java.lang.String portletId,
259 java.lang.String className)
260 throws com.liferay.portal.kernel.exception.PortalException,
261 com.liferay.portal.kernel.exception.SystemException {
262 return _portletItemLocalService.getPortletItem(groupId, name,
263 portletId, className);
264 }
265
266 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
267 long groupId, java.lang.String className)
268 throws com.liferay.portal.kernel.exception.SystemException {
269 return _portletItemLocalService.getPortletItems(groupId, className);
270 }
271
272 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
273 long groupId, java.lang.String portletId, java.lang.String className)
274 throws com.liferay.portal.kernel.exception.SystemException {
275 return _portletItemLocalService.getPortletItems(groupId, portletId,
276 className);
277 }
278
279 public com.liferay.portal.model.PortletItem updatePortletItem(long userId,
280 long groupId, java.lang.String name, java.lang.String portletId,
281 java.lang.String className)
282 throws com.liferay.portal.kernel.exception.PortalException,
283 com.liferay.portal.kernel.exception.SystemException {
284 return _portletItemLocalService.updatePortletItem(userId, groupId,
285 name, portletId, className);
286 }
287
288 public PortletItemLocalService getWrappedPortletItemLocalService() {
289 return _portletItemLocalService;
290 }
291
292 public void setWrappedPortletItemLocalService(
293 PortletItemLocalService portletItemLocalService) {
294 _portletItemLocalService = portletItemLocalService;
295 }
296
297 private PortletItemLocalService _portletItemLocalService;
298 }