1
22
23 package com.liferay.portal.service;
24
25
26
46 public class PortletLocalServiceUtil {
47 public static com.liferay.portal.model.Portlet addPortlet(
48 com.liferay.portal.model.Portlet portlet)
49 throws com.liferay.portal.SystemException {
50 return getService().addPortlet(portlet);
51 }
52
53 public static com.liferay.portal.model.Portlet createPortlet(long id) {
54 return getService().createPortlet(id);
55 }
56
57 public static void deletePortlet(long id)
58 throws com.liferay.portal.PortalException,
59 com.liferay.portal.SystemException {
60 getService().deletePortlet(id);
61 }
62
63 public static void deletePortlet(com.liferay.portal.model.Portlet portlet)
64 throws com.liferay.portal.SystemException {
65 getService().deletePortlet(portlet);
66 }
67
68 public static java.util.List<Object> dynamicQuery(
69 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
70 throws com.liferay.portal.SystemException {
71 return getService().dynamicQuery(dynamicQuery);
72 }
73
74 public static java.util.List<Object> dynamicQuery(
75 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
76 int end) throws com.liferay.portal.SystemException {
77 return getService().dynamicQuery(dynamicQuery, start, end);
78 }
79
80 public static com.liferay.portal.model.Portlet getPortlet(long id)
81 throws com.liferay.portal.PortalException,
82 com.liferay.portal.SystemException {
83 return getService().getPortlet(id);
84 }
85
86 public static java.util.List<com.liferay.portal.model.Portlet> getPortlets(
87 int start, int end) throws com.liferay.portal.SystemException {
88 return getService().getPortlets(start, end);
89 }
90
91 public static int getPortletsCount()
92 throws com.liferay.portal.SystemException {
93 return getService().getPortletsCount();
94 }
95
96 public static com.liferay.portal.model.Portlet updatePortlet(
97 com.liferay.portal.model.Portlet portlet)
98 throws com.liferay.portal.SystemException {
99 return getService().updatePortlet(portlet);
100 }
101
102 public static com.liferay.portal.model.Portlet updatePortlet(
103 com.liferay.portal.model.Portlet portlet, boolean merge)
104 throws com.liferay.portal.SystemException {
105 return getService().updatePortlet(portlet, merge);
106 }
107
108 public static com.liferay.portal.model.Portlet deployRemotePortlet(
109 com.liferay.portal.model.Portlet portlet)
110 throws com.liferay.portal.SystemException {
111 return getService().deployRemotePortlet(portlet);
112 }
113
114 public static void destroyRemotePortlet(
115 com.liferay.portal.model.Portlet portlet) {
116 getService().destroyRemotePortlet(portlet);
117 }
118
119 public static void destroyPortlet(com.liferay.portal.model.Portlet portlet) {
120 getService().destroyPortlet(portlet);
121 }
122
123 public static com.liferay.portal.model.PortletCategory getEARDisplay(
124 java.lang.String xml) throws com.liferay.portal.SystemException {
125 return getService().getEARDisplay(xml);
126 }
127
128 public static com.liferay.portal.model.PortletApp getPortletApp(
129 java.lang.String servletContextName) {
130 return getService().getPortletApp(servletContextName);
131 }
132
133 public static com.liferay.portal.model.PortletCategory getWARDisplay(
134 java.lang.String servletContextName, java.lang.String xml)
135 throws com.liferay.portal.SystemException {
136 return getService().getWARDisplay(servletContextName, xml);
137 }
138
139 public static java.util.List<com.liferay.portal.model.Portlet> getFriendlyURLMapperPortlets() {
140 return getService().getFriendlyURLMapperPortlets();
141 }
142
143 public static java.util.List<com.liferay.portal.kernel.portlet.FriendlyURLMapper> getFriendlyURLMappers() {
144 return getService().getFriendlyURLMappers();
145 }
146
147 public static com.liferay.portal.model.Portlet getPortletById(
148 java.lang.String portletId) {
149 return getService().getPortletById(portletId);
150 }
151
152 public static com.liferay.portal.model.Portlet getPortletById(
153 long companyId, java.lang.String portletId)
154 throws com.liferay.portal.SystemException {
155 return getService().getPortletById(companyId, portletId);
156 }
157
158 public static com.liferay.portal.model.Portlet getPortletByStrutsPath(
159 long companyId, java.lang.String strutsPath)
160 throws com.liferay.portal.SystemException {
161 return getService().getPortletByStrutsPath(companyId, strutsPath);
162 }
163
164 public static java.util.List<com.liferay.portal.model.Portlet> getPortlets() {
165 return getService().getPortlets();
166 }
167
168 public static java.util.List<com.liferay.portal.model.Portlet> getPortlets(
169 long companyId) throws com.liferay.portal.SystemException {
170 return getService().getPortlets(companyId);
171 }
172
173 public static java.util.List<com.liferay.portal.model.Portlet> getPortlets(
174 long companyId, boolean showSystem, boolean showPortal)
175 throws com.liferay.portal.SystemException {
176 return getService().getPortlets(companyId, showSystem, showPortal);
177 }
178
179 public static boolean hasPortlet(long companyId, java.lang.String portletId)
180 throws com.liferay.portal.SystemException {
181 return getService().hasPortlet(companyId, portletId);
182 }
183
184 public static void initEAR(javax.servlet.ServletContext servletContext,
185 java.lang.String[] xmls,
186 com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
187 getService().initEAR(servletContext, xmls, pluginPackage);
188 }
189
190 public static java.util.List<com.liferay.portal.model.Portlet> initWAR(
191 java.lang.String servletContextName,
192 javax.servlet.ServletContext servletContext, java.lang.String[] xmls,
193 com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
194 return getService()
195 .initWAR(servletContextName, servletContext, xmls,
196 pluginPackage);
197 }
198
199 public static com.liferay.portal.model.Portlet newPortlet(long companyId,
200 java.lang.String portletId) {
201 return getService().newPortlet(companyId, portletId);
202 }
203
204 public static com.liferay.portal.model.Portlet updatePortlet(
205 long companyId, java.lang.String portletId, java.lang.String roles,
206 boolean active) throws com.liferay.portal.SystemException {
207 return getService().updatePortlet(companyId, portletId, roles, active);
208 }
209
210 public static PortletLocalService getService() {
211 if (_service == null) {
212 throw new RuntimeException("PortletLocalService is not set");
213 }
214
215 return _service;
216 }
217
218 public void setService(PortletLocalService service) {
219 _service = service;
220 }
221
222 private static PortletLocalService _service;
223 }