1
14
15 package com.liferay.portal.service;
16
17
18
34 public class PortletItemLocalServiceWrapper implements PortletItemLocalService {
35 public PortletItemLocalServiceWrapper(
36 PortletItemLocalService portletItemLocalService) {
37 _portletItemLocalService = portletItemLocalService;
38 }
39
40 public com.liferay.portal.model.PortletItem addPortletItem(
41 com.liferay.portal.model.PortletItem portletItem)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return _portletItemLocalService.addPortletItem(portletItem);
44 }
45
46 public com.liferay.portal.model.PortletItem createPortletItem(
47 long portletItemId) {
48 return _portletItemLocalService.createPortletItem(portletItemId);
49 }
50
51 public void deletePortletItem(long portletItemId)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 _portletItemLocalService.deletePortletItem(portletItemId);
55 }
56
57 public void deletePortletItem(
58 com.liferay.portal.model.PortletItem portletItem)
59 throws com.liferay.portal.kernel.exception.SystemException {
60 _portletItemLocalService.deletePortletItem(portletItem);
61 }
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.kernel.exception.SystemException {
66 return _portletItemLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.kernel.exception.SystemException {
72 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public com.liferay.portal.model.PortletItem getPortletItem(
76 long portletItemId)
77 throws com.liferay.portal.kernel.exception.PortalException,
78 com.liferay.portal.kernel.exception.SystemException {
79 return _portletItemLocalService.getPortletItem(portletItemId);
80 }
81
82 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
83 int start, int end)
84 throws com.liferay.portal.kernel.exception.SystemException {
85 return _portletItemLocalService.getPortletItems(start, end);
86 }
87
88 public int getPortletItemsCount()
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return _portletItemLocalService.getPortletItemsCount();
91 }
92
93 public com.liferay.portal.model.PortletItem updatePortletItem(
94 com.liferay.portal.model.PortletItem portletItem)
95 throws com.liferay.portal.kernel.exception.SystemException {
96 return _portletItemLocalService.updatePortletItem(portletItem);
97 }
98
99 public com.liferay.portal.model.PortletItem updatePortletItem(
100 com.liferay.portal.model.PortletItem portletItem, boolean merge)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _portletItemLocalService.updatePortletItem(portletItem, merge);
103 }
104
105 public com.liferay.portal.model.PortletItem addPortletItem(long userId,
106 long groupId, java.lang.String name, java.lang.String portletId,
107 java.lang.String className)
108 throws com.liferay.portal.kernel.exception.PortalException,
109 com.liferay.portal.kernel.exception.SystemException {
110 return _portletItemLocalService.addPortletItem(userId, groupId, name,
111 portletId, className);
112 }
113
114 public com.liferay.portal.model.PortletItem getPortletItem(long groupId,
115 java.lang.String name, java.lang.String portletId,
116 java.lang.String className)
117 throws com.liferay.portal.kernel.exception.PortalException,
118 com.liferay.portal.kernel.exception.SystemException {
119 return _portletItemLocalService.getPortletItem(groupId, name,
120 portletId, className);
121 }
122
123 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
124 long groupId, java.lang.String className)
125 throws com.liferay.portal.kernel.exception.SystemException {
126 return _portletItemLocalService.getPortletItems(groupId, className);
127 }
128
129 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
130 long groupId, java.lang.String portletId, java.lang.String className)
131 throws com.liferay.portal.kernel.exception.SystemException {
132 return _portletItemLocalService.getPortletItems(groupId, portletId,
133 className);
134 }
135
136 public com.liferay.portal.model.PortletItem updatePortletItem(long userId,
137 long groupId, java.lang.String name, java.lang.String portletId,
138 java.lang.String className)
139 throws com.liferay.portal.kernel.exception.PortalException,
140 com.liferay.portal.kernel.exception.SystemException {
141 return _portletItemLocalService.updatePortletItem(userId, groupId,
142 name, portletId, className);
143 }
144
145 public PortletItemLocalService getWrappedPortletItemLocalService() {
146 return _portletItemLocalService;
147 }
148
149 private PortletItemLocalService _portletItemLocalService;
150 }