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.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.PortalException,
53 com.liferay.portal.SystemException {
54 _portletItemLocalService.deletePortletItem(portletItemId);
55 }
56
57 public void deletePortletItem(
58 com.liferay.portal.model.PortletItem portletItem)
59 throws com.liferay.portal.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.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.SystemException {
72 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public java.util.List<Object> dynamicQuery(
76 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77 int end,
78 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79 throws com.liferay.portal.SystemException {
80 return _portletItemLocalService.dynamicQuery(dynamicQuery, start, end,
81 orderByComparator);
82 }
83
84 public int dynamicQueryCount(
85 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86 throws com.liferay.portal.SystemException {
87 return _portletItemLocalService.dynamicQueryCount(dynamicQuery);
88 }
89
90 public com.liferay.portal.model.PortletItem getPortletItem(
91 long portletItemId)
92 throws com.liferay.portal.PortalException,
93 com.liferay.portal.SystemException {
94 return _portletItemLocalService.getPortletItem(portletItemId);
95 }
96
97 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
98 int start, int end) throws com.liferay.portal.SystemException {
99 return _portletItemLocalService.getPortletItems(start, end);
100 }
101
102 public int getPortletItemsCount() throws com.liferay.portal.SystemException {
103 return _portletItemLocalService.getPortletItemsCount();
104 }
105
106 public com.liferay.portal.model.PortletItem updatePortletItem(
107 com.liferay.portal.model.PortletItem portletItem)
108 throws com.liferay.portal.SystemException {
109 return _portletItemLocalService.updatePortletItem(portletItem);
110 }
111
112 public com.liferay.portal.model.PortletItem updatePortletItem(
113 com.liferay.portal.model.PortletItem portletItem, boolean merge)
114 throws com.liferay.portal.SystemException {
115 return _portletItemLocalService.updatePortletItem(portletItem, merge);
116 }
117
118 public com.liferay.portal.model.PortletItem addPortletItem(long userId,
119 long groupId, java.lang.String name, java.lang.String portletId,
120 java.lang.String className)
121 throws com.liferay.portal.PortalException,
122 com.liferay.portal.SystemException {
123 return _portletItemLocalService.addPortletItem(userId, groupId, name,
124 portletId, className);
125 }
126
127 public com.liferay.portal.model.PortletItem getPortletItem(long groupId,
128 java.lang.String name, java.lang.String portletId,
129 java.lang.String className)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException {
132 return _portletItemLocalService.getPortletItem(groupId, name,
133 portletId, className);
134 }
135
136 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
137 long groupId, java.lang.String className)
138 throws com.liferay.portal.SystemException {
139 return _portletItemLocalService.getPortletItems(groupId, className);
140 }
141
142 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
143 long groupId, java.lang.String portletId, java.lang.String className)
144 throws com.liferay.portal.SystemException {
145 return _portletItemLocalService.getPortletItems(groupId, portletId,
146 className);
147 }
148
149 public com.liferay.portal.model.PortletItem updatePortletItem(long userId,
150 long groupId, java.lang.String name, java.lang.String portletId,
151 java.lang.String className)
152 throws com.liferay.portal.PortalException,
153 com.liferay.portal.SystemException {
154 return _portletItemLocalService.updatePortletItem(userId, groupId,
155 name, portletId, className);
156 }
157
158 public PortletItemLocalService getWrappedPortletItemLocalService() {
159 return _portletItemLocalService;
160 }
161
162 private PortletItemLocalService _portletItemLocalService;
163 }