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 com.liferay.portal.model.PortletItem getPortletItem(
76 long portletItemId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return _portletItemLocalService.getPortletItem(portletItemId);
80 }
81
82 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _portletItemLocalService.getPortletItems(start, end);
85 }
86
87 public int getPortletItemsCount() throws com.liferay.portal.SystemException {
88 return _portletItemLocalService.getPortletItemsCount();
89 }
90
91 public com.liferay.portal.model.PortletItem updatePortletItem(
92 com.liferay.portal.model.PortletItem portletItem)
93 throws com.liferay.portal.SystemException {
94 return _portletItemLocalService.updatePortletItem(portletItem);
95 }
96
97 public com.liferay.portal.model.PortletItem updatePortletItem(
98 com.liferay.portal.model.PortletItem portletItem, boolean merge)
99 throws com.liferay.portal.SystemException {
100 return _portletItemLocalService.updatePortletItem(portletItem, merge);
101 }
102
103 public com.liferay.portal.model.PortletItem addPortletItem(long userId,
104 long groupId, java.lang.String name, java.lang.String portletId,
105 java.lang.String className)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException {
108 return _portletItemLocalService.addPortletItem(userId, groupId, name,
109 portletId, className);
110 }
111
112 public com.liferay.portal.model.PortletItem getPortletItem(long groupId,
113 java.lang.String name, java.lang.String portletId,
114 java.lang.String className)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException {
117 return _portletItemLocalService.getPortletItem(groupId, name,
118 portletId, className);
119 }
120
121 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
122 long groupId, java.lang.String className)
123 throws com.liferay.portal.SystemException {
124 return _portletItemLocalService.getPortletItems(groupId, className);
125 }
126
127 public java.util.List<com.liferay.portal.model.PortletItem> getPortletItems(
128 long groupId, java.lang.String portletId, java.lang.String className)
129 throws com.liferay.portal.SystemException {
130 return _portletItemLocalService.getPortletItems(groupId, portletId,
131 className);
132 }
133
134 public com.liferay.portal.model.PortletItem updatePortletItem(long userId,
135 long groupId, java.lang.String name, java.lang.String portletId,
136 java.lang.String className)
137 throws com.liferay.portal.PortalException,
138 com.liferay.portal.SystemException {
139 return _portletItemLocalService.updatePortletItem(userId, groupId,
140 name, portletId, className);
141 }
142
143 public PortletItemLocalService getWrappedPortletItemLocalService() {
144 return _portletItemLocalService;
145 }
146
147 private PortletItemLocalService _portletItemLocalService;
148 }