001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link LayoutLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       LayoutLocalService
024     * @generated
025     */
026    public class LayoutLocalServiceWrapper implements LayoutLocalService {
027            public LayoutLocalServiceWrapper(LayoutLocalService layoutLocalService) {
028                    _layoutLocalService = layoutLocalService;
029            }
030    
031            /**
032            * Adds the layout to the database. Also notifies the appropriate model listeners.
033            *
034            * @param layout the layout
035            * @return the layout that was added
036            * @throws SystemException if a system exception occurred
037            */
038            public com.liferay.portal.model.Layout addLayout(
039                    com.liferay.portal.model.Layout layout)
040                    throws com.liferay.portal.kernel.exception.SystemException {
041                    return _layoutLocalService.addLayout(layout);
042            }
043    
044            /**
045            * Creates a new layout with the primary key. Does not add the layout to the database.
046            *
047            * @param plid the primary key for the new layout
048            * @return the new layout
049            */
050            public com.liferay.portal.model.Layout createLayout(long plid) {
051                    return _layoutLocalService.createLayout(plid);
052            }
053    
054            /**
055            * Deletes the layout with the primary key from the database. Also notifies the appropriate model listeners.
056            *
057            * @param plid the primary key of the layout
058            * @throws PortalException if a layout with the primary key could not be found
059            * @throws SystemException if a system exception occurred
060            */
061            public void deleteLayout(long plid)
062                    throws com.liferay.portal.kernel.exception.PortalException,
063                            com.liferay.portal.kernel.exception.SystemException {
064                    _layoutLocalService.deleteLayout(plid);
065            }
066    
067            /**
068            * Deletes the layout from the database. Also notifies the appropriate model listeners.
069            *
070            * @param layout the layout
071            * @throws SystemException if a system exception occurred
072            */
073            public void deleteLayout(com.liferay.portal.model.Layout layout)
074                    throws com.liferay.portal.kernel.exception.SystemException {
075                    _layoutLocalService.deleteLayout(layout);
076            }
077    
078            /**
079            * Performs a dynamic query on the database and returns the matching rows.
080            *
081            * @param dynamicQuery the dynamic query
082            * @return the matching rows
083            * @throws SystemException if a system exception occurred
084            */
085            @SuppressWarnings("rawtypes")
086            public java.util.List dynamicQuery(
087                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
088                    throws com.liferay.portal.kernel.exception.SystemException {
089                    return _layoutLocalService.dynamicQuery(dynamicQuery);
090            }
091    
092            /**
093            * Performs a dynamic query on the database and returns a range of the matching rows.
094            *
095            * <p>
096            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
097            * </p>
098            *
099            * @param dynamicQuery the dynamic query
100            * @param start the lower bound of the range of model instances
101            * @param end the upper bound of the range of model instances (not inclusive)
102            * @return the range of matching rows
103            * @throws SystemException if a system exception occurred
104            */
105            @SuppressWarnings("rawtypes")
106            public java.util.List dynamicQuery(
107                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
108                    int end) throws com.liferay.portal.kernel.exception.SystemException {
109                    return _layoutLocalService.dynamicQuery(dynamicQuery, start, end);
110            }
111    
112            /**
113            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
114            *
115            * <p>
116            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
117            * </p>
118            *
119            * @param dynamicQuery the dynamic query
120            * @param start the lower bound of the range of model instances
121            * @param end the upper bound of the range of model instances (not inclusive)
122            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
123            * @return the ordered range of matching rows
124            * @throws SystemException if a system exception occurred
125            */
126            @SuppressWarnings("rawtypes")
127            public java.util.List dynamicQuery(
128                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
129                    int end,
130                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
131                    throws com.liferay.portal.kernel.exception.SystemException {
132                    return _layoutLocalService.dynamicQuery(dynamicQuery, start, end,
133                            orderByComparator);
134            }
135    
136            /**
137            * Returns the number of rows that match the dynamic query.
138            *
139            * @param dynamicQuery the dynamic query
140            * @return the number of rows that match the dynamic query
141            * @throws SystemException if a system exception occurred
142            */
143            public long dynamicQueryCount(
144                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
145                    throws com.liferay.portal.kernel.exception.SystemException {
146                    return _layoutLocalService.dynamicQueryCount(dynamicQuery);
147            }
148    
149            /**
150            * Returns the layout with the primary key.
151            *
152            * @param plid the primary key of the layout
153            * @return the layout
154            * @throws PortalException if a layout with the primary key could not be found
155            * @throws SystemException if a system exception occurred
156            */
157            public com.liferay.portal.model.Layout getLayout(long plid)
158                    throws com.liferay.portal.kernel.exception.PortalException,
159                            com.liferay.portal.kernel.exception.SystemException {
160                    return _layoutLocalService.getLayout(plid);
161            }
162    
163            public com.liferay.portal.model.PersistedModel getPersistedModel(
164                    java.io.Serializable primaryKeyObj)
165                    throws com.liferay.portal.kernel.exception.PortalException,
166                            com.liferay.portal.kernel.exception.SystemException {
167                    return _layoutLocalService.getPersistedModel(primaryKeyObj);
168            }
169    
170            /**
171            * Returns the layout with the UUID in the group.
172            *
173            * @param uuid the UUID of layout
174            * @param groupId the group id of the layout
175            * @return the layout
176            * @throws PortalException if a layout with the UUID in the group could not be found
177            * @throws SystemException if a system exception occurred
178            */
179            public com.liferay.portal.model.Layout getLayoutByUuidAndGroupId(
180                    java.lang.String uuid, long groupId)
181                    throws com.liferay.portal.kernel.exception.PortalException,
182                            com.liferay.portal.kernel.exception.SystemException {
183                    return _layoutLocalService.getLayoutByUuidAndGroupId(uuid, groupId);
184            }
185    
186            /**
187            * Returns a range of all the layouts.
188            *
189            * <p>
190            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
191            * </p>
192            *
193            * @param start the lower bound of the range of layouts
194            * @param end the upper bound of the range of layouts (not inclusive)
195            * @return the range of layouts
196            * @throws SystemException if a system exception occurred
197            */
198            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
199                    int start, int end)
200                    throws com.liferay.portal.kernel.exception.SystemException {
201                    return _layoutLocalService.getLayouts(start, end);
202            }
203    
204            /**
205            * Returns the number of layouts.
206            *
207            * @return the number of layouts
208            * @throws SystemException if a system exception occurred
209            */
210            public int getLayoutsCount()
211                    throws com.liferay.portal.kernel.exception.SystemException {
212                    return _layoutLocalService.getLayoutsCount();
213            }
214    
215            /**
216            * Updates the layout in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
217            *
218            * @param layout the layout
219            * @return the layout that was updated
220            * @throws SystemException if a system exception occurred
221            */
222            public com.liferay.portal.model.Layout updateLayout(
223                    com.liferay.portal.model.Layout layout)
224                    throws com.liferay.portal.kernel.exception.SystemException {
225                    return _layoutLocalService.updateLayout(layout);
226            }
227    
228            /**
229            * Updates the layout in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
230            *
231            * @param layout the layout
232            * @param merge whether to merge the layout with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
233            * @return the layout that was updated
234            * @throws SystemException if a system exception occurred
235            */
236            public com.liferay.portal.model.Layout updateLayout(
237                    com.liferay.portal.model.Layout layout, boolean merge)
238                    throws com.liferay.portal.kernel.exception.SystemException {
239                    return _layoutLocalService.updateLayout(layout, merge);
240            }
241    
242            /**
243            * Returns the Spring bean ID for this bean.
244            *
245            * @return the Spring bean ID for this bean
246            */
247            public java.lang.String getBeanIdentifier() {
248                    return _layoutLocalService.getBeanIdentifier();
249            }
250    
251            /**
252            * Sets the Spring bean ID for this bean.
253            *
254            * @param beanIdentifier the Spring bean ID for this bean
255            */
256            public void setBeanIdentifier(java.lang.String beanIdentifier) {
257                    _layoutLocalService.setBeanIdentifier(beanIdentifier);
258            }
259    
260            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
261                    boolean privateLayout, long parentLayoutId,
262                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
263                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
264                    java.lang.String description, java.lang.String type, boolean hidden,
265                    java.lang.String friendlyURL, long dlFolderId,
266                    com.liferay.portal.service.ServiceContext serviceContext)
267                    throws com.liferay.portal.kernel.exception.PortalException,
268                            com.liferay.portal.kernel.exception.SystemException {
269                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
270                            parentLayoutId, localeNamesMap, localeTitlesMap, description, type,
271                            hidden, friendlyURL, dlFolderId, serviceContext);
272            }
273    
274            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
275                    boolean privateLayout, long parentLayoutId,
276                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
277                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
278                    java.lang.String description, java.lang.String type, boolean hidden,
279                    java.lang.String friendlyURL,
280                    com.liferay.portal.service.ServiceContext serviceContext)
281                    throws com.liferay.portal.kernel.exception.PortalException,
282                            com.liferay.portal.kernel.exception.SystemException {
283                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
284                            parentLayoutId, localeNamesMap, localeTitlesMap, description, type,
285                            hidden, friendlyURL, serviceContext);
286            }
287    
288            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
289                    boolean privateLayout, long parentLayoutId, java.lang.String name,
290                    java.lang.String title, java.lang.String description,
291                    java.lang.String type, boolean hidden, java.lang.String friendlyURL,
292                    long dlFolderId,
293                    com.liferay.portal.service.ServiceContext serviceContext)
294                    throws com.liferay.portal.kernel.exception.PortalException,
295                            com.liferay.portal.kernel.exception.SystemException {
296                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
297                            parentLayoutId, name, title, description, type, hidden,
298                            friendlyURL, dlFolderId, serviceContext);
299            }
300    
301            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
302                    boolean privateLayout, long parentLayoutId, java.lang.String name,
303                    java.lang.String title, java.lang.String description,
304                    java.lang.String type, boolean hidden, java.lang.String friendlyURL,
305                    com.liferay.portal.service.ServiceContext serviceContext)
306                    throws com.liferay.portal.kernel.exception.PortalException,
307                            com.liferay.portal.kernel.exception.SystemException {
308                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
309                            parentLayoutId, name, title, description, type, hidden,
310                            friendlyURL, serviceContext);
311            }
312    
313            public void deleteLayout(com.liferay.portal.model.Layout layout,
314                    boolean updateLayoutSet)
315                    throws com.liferay.portal.kernel.exception.PortalException,
316                            com.liferay.portal.kernel.exception.SystemException {
317                    _layoutLocalService.deleteLayout(layout, updateLayoutSet);
318            }
319    
320            public void deleteLayout(long groupId, boolean privateLayout, long layoutId)
321                    throws com.liferay.portal.kernel.exception.PortalException,
322                            com.liferay.portal.kernel.exception.SystemException {
323                    _layoutLocalService.deleteLayout(groupId, privateLayout, layoutId);
324            }
325    
326            public void deleteLayouts(long groupId, boolean privateLayout)
327                    throws com.liferay.portal.kernel.exception.PortalException,
328                            com.liferay.portal.kernel.exception.SystemException {
329                    _layoutLocalService.deleteLayouts(groupId, privateLayout);
330            }
331    
332            public byte[] exportLayouts(long groupId, boolean privateLayout,
333                    long[] layoutIds,
334                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
335                    java.util.Date startDate, java.util.Date endDate)
336                    throws com.liferay.portal.kernel.exception.PortalException,
337                            com.liferay.portal.kernel.exception.SystemException {
338                    return _layoutLocalService.exportLayouts(groupId, privateLayout,
339                            layoutIds, parameterMap, startDate, endDate);
340            }
341    
342            public byte[] exportLayouts(long groupId, boolean privateLayout,
343                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
344                    java.util.Date startDate, java.util.Date endDate)
345                    throws com.liferay.portal.kernel.exception.PortalException,
346                            com.liferay.portal.kernel.exception.SystemException {
347                    return _layoutLocalService.exportLayouts(groupId, privateLayout,
348                            parameterMap, startDate, endDate);
349            }
350    
351            public java.io.File exportLayoutsAsFile(long groupId,
352                    boolean privateLayout, long[] layoutIds,
353                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
354                    java.util.Date startDate, java.util.Date endDate)
355                    throws com.liferay.portal.kernel.exception.PortalException,
356                            com.liferay.portal.kernel.exception.SystemException {
357                    return _layoutLocalService.exportLayoutsAsFile(groupId, privateLayout,
358                            layoutIds, parameterMap, startDate, endDate);
359            }
360    
361            public byte[] exportPortletInfo(long plid, long groupId,
362                    java.lang.String portletId,
363                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
364                    java.util.Date startDate, java.util.Date endDate)
365                    throws com.liferay.portal.kernel.exception.PortalException,
366                            com.liferay.portal.kernel.exception.SystemException {
367                    return _layoutLocalService.exportPortletInfo(plid, groupId, portletId,
368                            parameterMap, startDate, endDate);
369            }
370    
371            public java.io.File exportPortletInfoAsFile(long plid, long groupId,
372                    java.lang.String portletId,
373                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
374                    java.util.Date startDate, java.util.Date endDate)
375                    throws com.liferay.portal.kernel.exception.PortalException,
376                            com.liferay.portal.kernel.exception.SystemException {
377                    return _layoutLocalService.exportPortletInfoAsFile(plid, groupId,
378                            portletId, parameterMap, startDate, endDate);
379            }
380    
381            public com.liferay.portal.model.Layout fetchLayoutByUuidAndGroupId(
382                    java.lang.String uuid, long groupId)
383                    throws com.liferay.portal.kernel.exception.SystemException {
384                    return _layoutLocalService.fetchLayoutByUuidAndGroupId(uuid, groupId);
385            }
386    
387            public long getDefaultPlid(long groupId)
388                    throws com.liferay.portal.kernel.exception.SystemException {
389                    return _layoutLocalService.getDefaultPlid(groupId);
390            }
391    
392            public long getDefaultPlid(long groupId, boolean privateLayout)
393                    throws com.liferay.portal.kernel.exception.SystemException {
394                    return _layoutLocalService.getDefaultPlid(groupId, privateLayout);
395            }
396    
397            public long getDefaultPlid(long groupId, boolean privateLayout,
398                    java.lang.String portletId)
399                    throws com.liferay.portal.kernel.exception.PortalException,
400                            com.liferay.portal.kernel.exception.SystemException {
401                    return _layoutLocalService.getDefaultPlid(groupId, privateLayout,
402                            portletId);
403            }
404    
405            public com.liferay.portal.model.Layout getDLFolderLayout(long dlFolderId)
406                    throws com.liferay.portal.kernel.exception.PortalException,
407                            com.liferay.portal.kernel.exception.SystemException {
408                    return _layoutLocalService.getDLFolderLayout(dlFolderId);
409            }
410    
411            public com.liferay.portal.model.Layout getFriendlyURLLayout(long groupId,
412                    boolean privateLayout, java.lang.String friendlyURL)
413                    throws com.liferay.portal.kernel.exception.PortalException,
414                            com.liferay.portal.kernel.exception.SystemException {
415                    return _layoutLocalService.getFriendlyURLLayout(groupId, privateLayout,
416                            friendlyURL);
417            }
418    
419            public com.liferay.portal.model.Layout getLayout(long groupId,
420                    boolean privateLayout, long layoutId)
421                    throws com.liferay.portal.kernel.exception.PortalException,
422                            com.liferay.portal.kernel.exception.SystemException {
423                    return _layoutLocalService.getLayout(groupId, privateLayout, layoutId);
424            }
425    
426            public com.liferay.portal.model.Layout getLayoutByIconImageId(
427                    long iconImageId)
428                    throws com.liferay.portal.kernel.exception.PortalException,
429                            com.liferay.portal.kernel.exception.SystemException {
430                    return _layoutLocalService.getLayoutByIconImageId(iconImageId);
431            }
432    
433            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
434                    long groupId, boolean privateLayout)
435                    throws com.liferay.portal.kernel.exception.SystemException {
436                    return _layoutLocalService.getLayouts(groupId, privateLayout);
437            }
438    
439            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
440                    long groupId, boolean privateLayout, long parentLayoutId)
441                    throws com.liferay.portal.kernel.exception.SystemException {
442                    return _layoutLocalService.getLayouts(groupId, privateLayout,
443                            parentLayoutId);
444            }
445    
446            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
447                    long groupId, boolean privateLayout, long parentLayoutId, int start,
448                    int end) throws com.liferay.portal.kernel.exception.SystemException {
449                    return _layoutLocalService.getLayouts(groupId, privateLayout,
450                            parentLayoutId, start, end);
451            }
452    
453            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
454                    long groupId, boolean privateLayout, long[] layoutIds)
455                    throws com.liferay.portal.kernel.exception.PortalException,
456                            com.liferay.portal.kernel.exception.SystemException {
457                    return _layoutLocalService.getLayouts(groupId, privateLayout, layoutIds);
458            }
459    
460            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
461                    long groupId, boolean privateLayout, java.lang.String type)
462                    throws com.liferay.portal.kernel.exception.SystemException {
463                    return _layoutLocalService.getLayouts(groupId, privateLayout, type);
464            }
465    
466            public com.liferay.portal.model.LayoutReference[] getLayouts(
467                    long companyId, java.lang.String portletId,
468                    java.lang.String preferencesKey, java.lang.String preferencesValue)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return _layoutLocalService.getLayouts(companyId, portletId,
471                            preferencesKey, preferencesValue);
472            }
473    
474            public long getNextLayoutId(long groupId, boolean privateLayout)
475                    throws com.liferay.portal.kernel.exception.SystemException {
476                    return _layoutLocalService.getNextLayoutId(groupId, privateLayout);
477            }
478    
479            public java.util.List<com.liferay.portal.model.Layout> getNullFriendlyURLLayouts()
480                    throws com.liferay.portal.kernel.exception.SystemException {
481                    return _layoutLocalService.getNullFriendlyURLLayouts();
482            }
483    
484            public java.util.List<com.liferay.portal.model.Layout> getScopeGroupLayouts(
485                    long groupId, boolean privateLayout)
486                    throws com.liferay.portal.kernel.exception.SystemException {
487                    return _layoutLocalService.getScopeGroupLayouts(groupId, privateLayout);
488            }
489    
490            public boolean hasLayouts(long groupId, boolean privateLayout,
491                    long parentLayoutId)
492                    throws com.liferay.portal.kernel.exception.SystemException {
493                    return _layoutLocalService.hasLayouts(groupId, privateLayout,
494                            parentLayoutId);
495            }
496    
497            public void importLayouts(long userId, long groupId, boolean privateLayout,
498                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
499                    byte[] bytes)
500                    throws com.liferay.portal.kernel.exception.PortalException,
501                            com.liferay.portal.kernel.exception.SystemException {
502                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
503                            parameterMap, bytes);
504            }
505    
506            public void importLayouts(long userId, long groupId, boolean privateLayout,
507                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
508                    java.io.File file)
509                    throws com.liferay.portal.kernel.exception.PortalException,
510                            com.liferay.portal.kernel.exception.SystemException {
511                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
512                            parameterMap, file);
513            }
514    
515            public void importLayouts(long userId, long groupId, boolean privateLayout,
516                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
517                    java.io.InputStream is)
518                    throws com.liferay.portal.kernel.exception.PortalException,
519                            com.liferay.portal.kernel.exception.SystemException {
520                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
521                            parameterMap, is);
522            }
523    
524            public void importPortletInfo(long userId, long plid, long groupId,
525                    java.lang.String portletId,
526                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
527                    java.io.File file)
528                    throws com.liferay.portal.kernel.exception.PortalException,
529                            com.liferay.portal.kernel.exception.SystemException {
530                    _layoutLocalService.importPortletInfo(userId, plid, groupId, portletId,
531                            parameterMap, file);
532            }
533    
534            public void importPortletInfo(long userId, long plid, long groupId,
535                    java.lang.String portletId,
536                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
537                    java.io.InputStream is)
538                    throws com.liferay.portal.kernel.exception.PortalException,
539                            com.liferay.portal.kernel.exception.SystemException {
540                    _layoutLocalService.importPortletInfo(userId, plid, groupId, portletId,
541                            parameterMap, is);
542            }
543    
544            public void setLayouts(long groupId, boolean privateLayout,
545                    long parentLayoutId, long[] layoutIds)
546                    throws com.liferay.portal.kernel.exception.PortalException,
547                            com.liferay.portal.kernel.exception.SystemException {
548                    _layoutLocalService.setLayouts(groupId, privateLayout, parentLayoutId,
549                            layoutIds);
550            }
551    
552            public com.liferay.portal.model.Layout updateFriendlyURL(long plid,
553                    java.lang.String friendlyURL)
554                    throws com.liferay.portal.kernel.exception.PortalException,
555                            com.liferay.portal.kernel.exception.SystemException {
556                    return _layoutLocalService.updateFriendlyURL(plid, friendlyURL);
557            }
558    
559            public com.liferay.portal.model.Layout updateLayout(long groupId,
560                    boolean privateLayout, long layoutId, long parentLayoutId,
561                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
562                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
563                    java.lang.String description, java.lang.String type, boolean hidden,
564                    java.lang.String friendlyURL, java.lang.Boolean iconImage,
565                    byte[] iconBytes,
566                    com.liferay.portal.service.ServiceContext serviceContext)
567                    throws com.liferay.portal.kernel.exception.PortalException,
568                            com.liferay.portal.kernel.exception.SystemException {
569                    return _layoutLocalService.updateLayout(groupId, privateLayout,
570                            layoutId, parentLayoutId, localeNamesMap, localeTitlesMap,
571                            description, type, hidden, friendlyURL, iconImage, iconBytes,
572                            serviceContext);
573            }
574    
575            public com.liferay.portal.model.Layout updateLayout(long groupId,
576                    boolean privateLayout, long layoutId, long parentLayoutId,
577                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
578                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
579                    java.lang.String description, java.lang.String type, boolean hidden,
580                    java.lang.String friendlyURL,
581                    com.liferay.portal.service.ServiceContext serviceContext)
582                    throws com.liferay.portal.kernel.exception.PortalException,
583                            com.liferay.portal.kernel.exception.SystemException {
584                    return _layoutLocalService.updateLayout(groupId, privateLayout,
585                            layoutId, parentLayoutId, localeNamesMap, localeTitlesMap,
586                            description, type, hidden, friendlyURL, serviceContext);
587            }
588    
589            public com.liferay.portal.model.Layout updateLayout(long groupId,
590                    boolean privateLayout, long layoutId, java.lang.String typeSettings)
591                    throws com.liferay.portal.kernel.exception.PortalException,
592                            com.liferay.portal.kernel.exception.SystemException {
593                    return _layoutLocalService.updateLayout(groupId, privateLayout,
594                            layoutId, typeSettings);
595            }
596    
597            public com.liferay.portal.model.Layout updateLookAndFeel(long groupId,
598                    boolean privateLayout, long layoutId, java.lang.String themeId,
599                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
600                    throws com.liferay.portal.kernel.exception.PortalException,
601                            com.liferay.portal.kernel.exception.SystemException {
602                    return _layoutLocalService.updateLookAndFeel(groupId, privateLayout,
603                            layoutId, themeId, colorSchemeId, css, wapTheme);
604            }
605    
606            public com.liferay.portal.model.Layout updateName(
607                    com.liferay.portal.model.Layout layout, java.lang.String name,
608                    java.lang.String languageId)
609                    throws com.liferay.portal.kernel.exception.PortalException,
610                            com.liferay.portal.kernel.exception.SystemException {
611                    return _layoutLocalService.updateName(layout, name, languageId);
612            }
613    
614            public com.liferay.portal.model.Layout updateName(long groupId,
615                    boolean privateLayout, long layoutId, java.lang.String name,
616                    java.lang.String languageId)
617                    throws com.liferay.portal.kernel.exception.PortalException,
618                            com.liferay.portal.kernel.exception.SystemException {
619                    return _layoutLocalService.updateName(groupId, privateLayout, layoutId,
620                            name, languageId);
621            }
622    
623            public com.liferay.portal.model.Layout updateName(long plid,
624                    java.lang.String name, java.lang.String languageId)
625                    throws com.liferay.portal.kernel.exception.PortalException,
626                            com.liferay.portal.kernel.exception.SystemException {
627                    return _layoutLocalService.updateName(plid, name, languageId);
628            }
629    
630            public com.liferay.portal.model.Layout updateParentLayoutId(long groupId,
631                    boolean privateLayout, long layoutId, long parentLayoutId)
632                    throws com.liferay.portal.kernel.exception.PortalException,
633                            com.liferay.portal.kernel.exception.SystemException {
634                    return _layoutLocalService.updateParentLayoutId(groupId, privateLayout,
635                            layoutId, parentLayoutId);
636            }
637    
638            public com.liferay.portal.model.Layout updateParentLayoutId(long plid,
639                    long parentPlid)
640                    throws com.liferay.portal.kernel.exception.PortalException,
641                            com.liferay.portal.kernel.exception.SystemException {
642                    return _layoutLocalService.updateParentLayoutId(plid, parentPlid);
643            }
644    
645            public com.liferay.portal.model.Layout updatePriority(
646                    com.liferay.portal.model.Layout layout, int priority)
647                    throws com.liferay.portal.kernel.exception.SystemException {
648                    return _layoutLocalService.updatePriority(layout, priority);
649            }
650    
651            public com.liferay.portal.model.Layout updatePriority(long groupId,
652                    boolean privateLayout, long layoutId, int priority)
653                    throws com.liferay.portal.kernel.exception.PortalException,
654                            com.liferay.portal.kernel.exception.SystemException {
655                    return _layoutLocalService.updatePriority(groupId, privateLayout,
656                            layoutId, priority);
657            }
658    
659            public com.liferay.portal.model.Layout updatePriority(long plid,
660                    int priority)
661                    throws com.liferay.portal.kernel.exception.PortalException,
662                            com.liferay.portal.kernel.exception.SystemException {
663                    return _layoutLocalService.updatePriority(plid, priority);
664            }
665    
666            /**
667            * @see com.liferay.portlet.portletconfiguration.action.EditScopeAction#updateScope
668            */
669            public void updateScopedPortletNames(long groupId, boolean privateLayout,
670                    long layoutId, java.lang.String name, java.lang.String languageId)
671                    throws com.liferay.portal.kernel.exception.PortalException,
672                            com.liferay.portal.kernel.exception.SystemException {
673                    _layoutLocalService.updateScopedPortletNames(groupId, privateLayout,
674                            layoutId, name, languageId);
675            }
676    
677            public LayoutLocalService getWrappedLayoutLocalService() {
678                    return _layoutLocalService;
679            }
680    
681            public void setWrappedLayoutLocalService(
682                    LayoutLocalService layoutLocalService) {
683                    _layoutLocalService = layoutLocalService;
684            }
685    
686            private LayoutLocalService _layoutLocalService;
687    }