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