001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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 to add
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 to delete
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 to delete
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 to search with
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 to search with
100            * @param start the lower bound of the range of model instances to return
101            * @param end the upper bound of the range of model instances to return (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 to search with
120            * @param start the lower bound of the range of model instances to return
121            * @param end the upper bound of the range of model instances to return (not inclusive)
122            * @param orderByComparator the comparator to order the results by
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            * Counts the number of rows that match the dynamic query.
138            *
139            * @param dynamicQuery the dynamic query to search with
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            * Gets the layout with the primary key.
151            *
152            * @param plid the primary key of the layout to get
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            /**
164            * Gets the layout with the UUID and group id.
165            *
166            * @param uuid the UUID of layout to get
167            * @param groupId the group id of the layout to get
168            * @return the layout
169            * @throws PortalException if a layout with the UUID and group id could not be found
170            * @throws SystemException if a system exception occurred
171            */
172            public com.liferay.portal.model.Layout getLayoutByUuidAndGroupId(
173                    java.lang.String uuid, long groupId)
174                    throws com.liferay.portal.kernel.exception.PortalException,
175                            com.liferay.portal.kernel.exception.SystemException {
176                    return _layoutLocalService.getLayoutByUuidAndGroupId(uuid, groupId);
177            }
178    
179            /**
180            * Gets a range of all the layouts.
181            *
182            * <p>
183            * 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.
184            * </p>
185            *
186            * @param start the lower bound of the range of layouts to return
187            * @param end the upper bound of the range of layouts to return (not inclusive)
188            * @return the range of layouts
189            * @throws SystemException if a system exception occurred
190            */
191            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
192                    int start, int end)
193                    throws com.liferay.portal.kernel.exception.SystemException {
194                    return _layoutLocalService.getLayouts(start, end);
195            }
196    
197            /**
198            * Gets the number of layouts.
199            *
200            * @return the number of layouts
201            * @throws SystemException if a system exception occurred
202            */
203            public int getLayoutsCount()
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return _layoutLocalService.getLayoutsCount();
206            }
207    
208            /**
209            * Updates the layout in the database. Also notifies the appropriate model listeners.
210            *
211            * @param layout the layout to update
212            * @return the layout that was updated
213            * @throws SystemException if a system exception occurred
214            */
215            public com.liferay.portal.model.Layout updateLayout(
216                    com.liferay.portal.model.Layout layout)
217                    throws com.liferay.portal.kernel.exception.SystemException {
218                    return _layoutLocalService.updateLayout(layout);
219            }
220    
221            /**
222            * Updates the layout in the database. Also notifies the appropriate model listeners.
223            *
224            * @param layout the layout to update
225            * @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.
226            * @return the layout that was updated
227            * @throws SystemException if a system exception occurred
228            */
229            public com.liferay.portal.model.Layout updateLayout(
230                    com.liferay.portal.model.Layout layout, boolean merge)
231                    throws com.liferay.portal.kernel.exception.SystemException {
232                    return _layoutLocalService.updateLayout(layout, merge);
233            }
234    
235            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
236                    boolean privateLayout, long parentLayoutId,
237                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
238                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
239                    java.lang.String description, java.lang.String type, boolean hidden,
240                    java.lang.String friendlyURL, long dlFolderId,
241                    com.liferay.portal.service.ServiceContext serviceContext)
242                    throws com.liferay.portal.kernel.exception.PortalException,
243                            com.liferay.portal.kernel.exception.SystemException {
244                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
245                            parentLayoutId, localeNamesMap, localeTitlesMap, description, type,
246                            hidden, friendlyURL, dlFolderId, serviceContext);
247            }
248    
249            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
250                    boolean privateLayout, long parentLayoutId,
251                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
252                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
253                    java.lang.String description, java.lang.String type, boolean hidden,
254                    java.lang.String friendlyURL,
255                    com.liferay.portal.service.ServiceContext serviceContext)
256                    throws com.liferay.portal.kernel.exception.PortalException,
257                            com.liferay.portal.kernel.exception.SystemException {
258                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
259                            parentLayoutId, localeNamesMap, localeTitlesMap, description, type,
260                            hidden, friendlyURL, serviceContext);
261            }
262    
263            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
264                    boolean privateLayout, long parentLayoutId, java.lang.String name,
265                    java.lang.String title, java.lang.String description,
266                    java.lang.String type, boolean hidden, java.lang.String friendlyURL,
267                    long dlFolderId,
268                    com.liferay.portal.service.ServiceContext serviceContext)
269                    throws com.liferay.portal.kernel.exception.PortalException,
270                            com.liferay.portal.kernel.exception.SystemException {
271                    return _layoutLocalService.addLayout(userId, groupId, privateLayout,
272                            parentLayoutId, name, title, description, type, hidden,
273                            friendlyURL, dlFolderId, serviceContext);
274            }
275    
276            public com.liferay.portal.model.Layout addLayout(long userId, long groupId,
277                    boolean privateLayout, long parentLayoutId, java.lang.String name,
278                    java.lang.String title, java.lang.String description,
279                    java.lang.String type, boolean hidden, 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, name, title, description, type, hidden,
285                            friendlyURL, serviceContext);
286            }
287    
288            public void deleteLayout(com.liferay.portal.model.Layout layout,
289                    boolean updateLayoutSet)
290                    throws com.liferay.portal.kernel.exception.PortalException,
291                            com.liferay.portal.kernel.exception.SystemException {
292                    _layoutLocalService.deleteLayout(layout, updateLayoutSet);
293            }
294    
295            public void deleteLayout(long groupId, boolean privateLayout, long layoutId)
296                    throws com.liferay.portal.kernel.exception.PortalException,
297                            com.liferay.portal.kernel.exception.SystemException {
298                    _layoutLocalService.deleteLayout(groupId, privateLayout, layoutId);
299            }
300    
301            public void deleteLayouts(long groupId, boolean privateLayout)
302                    throws com.liferay.portal.kernel.exception.PortalException,
303                            com.liferay.portal.kernel.exception.SystemException {
304                    _layoutLocalService.deleteLayouts(groupId, privateLayout);
305            }
306    
307            public byte[] exportLayouts(long groupId, boolean privateLayout,
308                    long[] layoutIds,
309                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
310                    java.util.Date startDate, java.util.Date endDate)
311                    throws com.liferay.portal.kernel.exception.PortalException,
312                            com.liferay.portal.kernel.exception.SystemException {
313                    return _layoutLocalService.exportLayouts(groupId, privateLayout,
314                            layoutIds, parameterMap, startDate, endDate);
315            }
316    
317            public byte[] exportLayouts(long groupId, boolean privateLayout,
318                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
319                    java.util.Date startDate, java.util.Date endDate)
320                    throws com.liferay.portal.kernel.exception.PortalException,
321                            com.liferay.portal.kernel.exception.SystemException {
322                    return _layoutLocalService.exportLayouts(groupId, privateLayout,
323                            parameterMap, startDate, endDate);
324            }
325    
326            public java.io.File exportLayoutsAsFile(long groupId,
327                    boolean privateLayout, long[] layoutIds,
328                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
329                    java.util.Date startDate, java.util.Date endDate)
330                    throws com.liferay.portal.kernel.exception.PortalException,
331                            com.liferay.portal.kernel.exception.SystemException {
332                    return _layoutLocalService.exportLayoutsAsFile(groupId, privateLayout,
333                            layoutIds, parameterMap, startDate, endDate);
334            }
335    
336            public byte[] exportPortletInfo(long plid, long groupId,
337                    java.lang.String portletId,
338                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
339                    java.util.Date startDate, java.util.Date endDate)
340                    throws com.liferay.portal.kernel.exception.PortalException,
341                            com.liferay.portal.kernel.exception.SystemException {
342                    return _layoutLocalService.exportPortletInfo(plid, groupId, portletId,
343                            parameterMap, startDate, endDate);
344            }
345    
346            public java.io.File exportPortletInfoAsFile(long plid, long groupId,
347                    java.lang.String portletId,
348                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
349                    java.util.Date startDate, java.util.Date endDate)
350                    throws com.liferay.portal.kernel.exception.PortalException,
351                            com.liferay.portal.kernel.exception.SystemException {
352                    return _layoutLocalService.exportPortletInfoAsFile(plid, groupId,
353                            portletId, parameterMap, startDate, endDate);
354            }
355    
356            public long getDefaultPlid(long groupId)
357                    throws com.liferay.portal.kernel.exception.SystemException {
358                    return _layoutLocalService.getDefaultPlid(groupId);
359            }
360    
361            public long getDefaultPlid(long groupId, boolean privateLayout)
362                    throws com.liferay.portal.kernel.exception.SystemException {
363                    return _layoutLocalService.getDefaultPlid(groupId, privateLayout);
364            }
365    
366            public long getDefaultPlid(long groupId, boolean privateLayout,
367                    java.lang.String portletId)
368                    throws com.liferay.portal.kernel.exception.PortalException,
369                            com.liferay.portal.kernel.exception.SystemException {
370                    return _layoutLocalService.getDefaultPlid(groupId, privateLayout,
371                            portletId);
372            }
373    
374            public com.liferay.portal.model.Layout getDLFolderLayout(long dlFolderId)
375                    throws com.liferay.portal.kernel.exception.PortalException,
376                            com.liferay.portal.kernel.exception.SystemException {
377                    return _layoutLocalService.getDLFolderLayout(dlFolderId);
378            }
379    
380            public com.liferay.portal.model.Layout getFriendlyURLLayout(long groupId,
381                    boolean privateLayout, java.lang.String friendlyURL)
382                    throws com.liferay.portal.kernel.exception.PortalException,
383                            com.liferay.portal.kernel.exception.SystemException {
384                    return _layoutLocalService.getFriendlyURLLayout(groupId, privateLayout,
385                            friendlyURL);
386            }
387    
388            public com.liferay.portal.model.Layout getLayout(long groupId,
389                    boolean privateLayout, long layoutId)
390                    throws com.liferay.portal.kernel.exception.PortalException,
391                            com.liferay.portal.kernel.exception.SystemException {
392                    return _layoutLocalService.getLayout(groupId, privateLayout, layoutId);
393            }
394    
395            public com.liferay.portal.model.Layout getLayoutByIconImageId(
396                    long iconImageId)
397                    throws com.liferay.portal.kernel.exception.PortalException,
398                            com.liferay.portal.kernel.exception.SystemException {
399                    return _layoutLocalService.getLayoutByIconImageId(iconImageId);
400            }
401    
402            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
403                    long groupId, boolean privateLayout)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    return _layoutLocalService.getLayouts(groupId, privateLayout);
406            }
407    
408            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
409                    long groupId, boolean privateLayout, long parentLayoutId)
410                    throws com.liferay.portal.kernel.exception.SystemException {
411                    return _layoutLocalService.getLayouts(groupId, privateLayout,
412                            parentLayoutId);
413            }
414    
415            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
416                    long groupId, boolean privateLayout, long parentLayoutId, int start,
417                    int end) throws com.liferay.portal.kernel.exception.SystemException {
418                    return _layoutLocalService.getLayouts(groupId, privateLayout,
419                            parentLayoutId, start, end);
420            }
421    
422            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
423                    long groupId, boolean privateLayout, long[] layoutIds)
424                    throws com.liferay.portal.kernel.exception.PortalException,
425                            com.liferay.portal.kernel.exception.SystemException {
426                    return _layoutLocalService.getLayouts(groupId, privateLayout, layoutIds);
427            }
428    
429            public java.util.List<com.liferay.portal.model.Layout> getLayouts(
430                    long groupId, boolean privateLayout, java.lang.String type)
431                    throws com.liferay.portal.kernel.exception.SystemException {
432                    return _layoutLocalService.getLayouts(groupId, privateLayout, type);
433            }
434    
435            public com.liferay.portal.model.LayoutReference[] getLayouts(
436                    long companyId, java.lang.String portletId,
437                    java.lang.String preferencesKey, java.lang.String preferencesValue)
438                    throws com.liferay.portal.kernel.exception.SystemException {
439                    return _layoutLocalService.getLayouts(companyId, portletId,
440                            preferencesKey, preferencesValue);
441            }
442    
443            public long getNextLayoutId(long groupId, boolean privateLayout)
444                    throws com.liferay.portal.kernel.exception.SystemException {
445                    return _layoutLocalService.getNextLayoutId(groupId, privateLayout);
446            }
447    
448            public java.util.List<com.liferay.portal.model.Layout> getNullFriendlyURLLayouts()
449                    throws com.liferay.portal.kernel.exception.SystemException {
450                    return _layoutLocalService.getNullFriendlyURLLayouts();
451            }
452    
453            public boolean hasLayouts(long groupId, boolean privateLayout,
454                    long parentLayoutId)
455                    throws com.liferay.portal.kernel.exception.SystemException {
456                    return _layoutLocalService.hasLayouts(groupId, privateLayout,
457                            parentLayoutId);
458            }
459    
460            public void importLayouts(long userId, long groupId, boolean privateLayout,
461                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
462                    byte[] bytes)
463                    throws com.liferay.portal.kernel.exception.PortalException,
464                            com.liferay.portal.kernel.exception.SystemException {
465                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
466                            parameterMap, bytes);
467            }
468    
469            public void importLayouts(long userId, long groupId, boolean privateLayout,
470                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
471                    java.io.File file)
472                    throws com.liferay.portal.kernel.exception.PortalException,
473                            com.liferay.portal.kernel.exception.SystemException {
474                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
475                            parameterMap, file);
476            }
477    
478            public void importLayouts(long userId, long groupId, boolean privateLayout,
479                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
480                    java.io.InputStream is)
481                    throws com.liferay.portal.kernel.exception.PortalException,
482                            com.liferay.portal.kernel.exception.SystemException {
483                    _layoutLocalService.importLayouts(userId, groupId, privateLayout,
484                            parameterMap, is);
485            }
486    
487            public void importPortletInfo(long userId, long plid, long groupId,
488                    java.lang.String portletId,
489                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
490                    java.io.File file)
491                    throws com.liferay.portal.kernel.exception.PortalException,
492                            com.liferay.portal.kernel.exception.SystemException {
493                    _layoutLocalService.importPortletInfo(userId, plid, groupId, portletId,
494                            parameterMap, file);
495            }
496    
497            public void importPortletInfo(long userId, long plid, long groupId,
498                    java.lang.String portletId,
499                    java.util.Map<java.lang.String, java.lang.String[]> parameterMap,
500                    java.io.InputStream is)
501                    throws com.liferay.portal.kernel.exception.PortalException,
502                            com.liferay.portal.kernel.exception.SystemException {
503                    _layoutLocalService.importPortletInfo(userId, plid, groupId, portletId,
504                            parameterMap, is);
505            }
506    
507            public void setLayouts(long groupId, boolean privateLayout,
508                    long parentLayoutId, long[] layoutIds)
509                    throws com.liferay.portal.kernel.exception.PortalException,
510                            com.liferay.portal.kernel.exception.SystemException {
511                    _layoutLocalService.setLayouts(groupId, privateLayout, parentLayoutId,
512                            layoutIds);
513            }
514    
515            public com.liferay.portal.model.Layout updateFriendlyURL(long plid,
516                    java.lang.String friendlyURL)
517                    throws com.liferay.portal.kernel.exception.PortalException,
518                            com.liferay.portal.kernel.exception.SystemException {
519                    return _layoutLocalService.updateFriendlyURL(plid, friendlyURL);
520            }
521    
522            public com.liferay.portal.model.Layout updateLayout(long groupId,
523                    boolean privateLayout, long layoutId, long parentLayoutId,
524                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
525                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
526                    java.lang.String description, java.lang.String type, boolean hidden,
527                    java.lang.String friendlyURL, java.lang.Boolean iconImage,
528                    byte[] iconBytes,
529                    com.liferay.portal.service.ServiceContext serviceContext)
530                    throws com.liferay.portal.kernel.exception.PortalException,
531                            com.liferay.portal.kernel.exception.SystemException {
532                    return _layoutLocalService.updateLayout(groupId, privateLayout,
533                            layoutId, parentLayoutId, localeNamesMap, localeTitlesMap,
534                            description, type, hidden, friendlyURL, iconImage, iconBytes,
535                            serviceContext);
536            }
537    
538            public com.liferay.portal.model.Layout updateLayout(long groupId,
539                    boolean privateLayout, long layoutId, long parentLayoutId,
540                    java.util.Map<java.util.Locale, java.lang.String> localeNamesMap,
541                    java.util.Map<java.util.Locale, java.lang.String> localeTitlesMap,
542                    java.lang.String description, java.lang.String type, boolean hidden,
543                    java.lang.String friendlyURL,
544                    com.liferay.portal.service.ServiceContext serviceContext)
545                    throws com.liferay.portal.kernel.exception.PortalException,
546                            com.liferay.portal.kernel.exception.SystemException {
547                    return _layoutLocalService.updateLayout(groupId, privateLayout,
548                            layoutId, parentLayoutId, localeNamesMap, localeTitlesMap,
549                            description, type, hidden, friendlyURL, serviceContext);
550            }
551    
552            public com.liferay.portal.model.Layout updateLayout(long groupId,
553                    boolean privateLayout, long layoutId, java.lang.String typeSettings)
554                    throws com.liferay.portal.kernel.exception.PortalException,
555                            com.liferay.portal.kernel.exception.SystemException {
556                    return _layoutLocalService.updateLayout(groupId, privateLayout,
557                            layoutId, typeSettings);
558            }
559    
560            public com.liferay.portal.model.Layout updateLookAndFeel(long groupId,
561                    boolean privateLayout, long layoutId, java.lang.String themeId,
562                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
563                    throws com.liferay.portal.kernel.exception.PortalException,
564                            com.liferay.portal.kernel.exception.SystemException {
565                    return _layoutLocalService.updateLookAndFeel(groupId, privateLayout,
566                            layoutId, themeId, colorSchemeId, css, wapTheme);
567            }
568    
569            public com.liferay.portal.model.Layout updateName(
570                    com.liferay.portal.model.Layout layout, java.lang.String name,
571                    java.lang.String languageId)
572                    throws com.liferay.portal.kernel.exception.PortalException,
573                            com.liferay.portal.kernel.exception.SystemException {
574                    return _layoutLocalService.updateName(layout, name, languageId);
575            }
576    
577            public com.liferay.portal.model.Layout updateName(long groupId,
578                    boolean privateLayout, long layoutId, java.lang.String name,
579                    java.lang.String languageId)
580                    throws com.liferay.portal.kernel.exception.PortalException,
581                            com.liferay.portal.kernel.exception.SystemException {
582                    return _layoutLocalService.updateName(groupId, privateLayout, layoutId,
583                            name, languageId);
584            }
585    
586            public com.liferay.portal.model.Layout updateName(long plid,
587                    java.lang.String name, java.lang.String languageId)
588                    throws com.liferay.portal.kernel.exception.PortalException,
589                            com.liferay.portal.kernel.exception.SystemException {
590                    return _layoutLocalService.updateName(plid, name, languageId);
591            }
592    
593            public com.liferay.portal.model.Layout updateParentLayoutId(long groupId,
594                    boolean privateLayout, long layoutId, long parentLayoutId)
595                    throws com.liferay.portal.kernel.exception.PortalException,
596                            com.liferay.portal.kernel.exception.SystemException {
597                    return _layoutLocalService.updateParentLayoutId(groupId, privateLayout,
598                            layoutId, parentLayoutId);
599            }
600    
601            public com.liferay.portal.model.Layout updateParentLayoutId(long plid,
602                    long parentPlid)
603                    throws com.liferay.portal.kernel.exception.PortalException,
604                            com.liferay.portal.kernel.exception.SystemException {
605                    return _layoutLocalService.updateParentLayoutId(plid, parentPlid);
606            }
607    
608            public com.liferay.portal.model.Layout updatePriority(
609                    com.liferay.portal.model.Layout layout, int priority)
610                    throws com.liferay.portal.kernel.exception.SystemException {
611                    return _layoutLocalService.updatePriority(layout, priority);
612            }
613    
614            public com.liferay.portal.model.Layout updatePriority(long groupId,
615                    boolean privateLayout, long layoutId, int priority)
616                    throws com.liferay.portal.kernel.exception.PortalException,
617                            com.liferay.portal.kernel.exception.SystemException {
618                    return _layoutLocalService.updatePriority(groupId, privateLayout,
619                            layoutId, priority);
620            }
621    
622            public com.liferay.portal.model.Layout updatePriority(long plid,
623                    int priority)
624                    throws com.liferay.portal.kernel.exception.PortalException,
625                            com.liferay.portal.kernel.exception.SystemException {
626                    return _layoutLocalService.updatePriority(plid, priority);
627            }
628    
629            public LayoutLocalService getWrappedLayoutLocalService() {
630                    return _layoutLocalService;
631            }
632    
633            private LayoutLocalService _layoutLocalService;
634    }