001    /**
002     * Copyright (c) 2000-2013 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     * Provides a wrapper for {@link LayoutFriendlyURLLocalService}.
019     *
020     * @author Brian Wing Shun Chan
021     * @see LayoutFriendlyURLLocalService
022     * @generated
023     */
024    public class LayoutFriendlyURLLocalServiceWrapper
025            implements LayoutFriendlyURLLocalService,
026                    ServiceWrapper<LayoutFriendlyURLLocalService> {
027            public LayoutFriendlyURLLocalServiceWrapper(
028                    LayoutFriendlyURLLocalService layoutFriendlyURLLocalService) {
029                    _layoutFriendlyURLLocalService = layoutFriendlyURLLocalService;
030            }
031    
032            /**
033            * Adds the layout friendly u r l to the database. Also notifies the appropriate model listeners.
034            *
035            * @param layoutFriendlyURL the layout friendly u r l
036            * @return the layout friendly u r l that was added
037            * @throws SystemException if a system exception occurred
038            */
039            @Override
040            public com.liferay.portal.model.LayoutFriendlyURL addLayoutFriendlyURL(
041                    com.liferay.portal.model.LayoutFriendlyURL layoutFriendlyURL)
042                    throws com.liferay.portal.kernel.exception.SystemException {
043                    return _layoutFriendlyURLLocalService.addLayoutFriendlyURL(layoutFriendlyURL);
044            }
045    
046            /**
047            * Creates a new layout friendly u r l with the primary key. Does not add the layout friendly u r l to the database.
048            *
049            * @param layoutFriendlyURLId the primary key for the new layout friendly u r l
050            * @return the new layout friendly u r l
051            */
052            @Override
053            public com.liferay.portal.model.LayoutFriendlyURL createLayoutFriendlyURL(
054                    long layoutFriendlyURLId) {
055                    return _layoutFriendlyURLLocalService.createLayoutFriendlyURL(layoutFriendlyURLId);
056            }
057    
058            /**
059            * Deletes the layout friendly u r l with the primary key from the database. Also notifies the appropriate model listeners.
060            *
061            * @param layoutFriendlyURLId the primary key of the layout friendly u r l
062            * @return the layout friendly u r l that was removed
063            * @throws PortalException if a layout friendly u r l with the primary key could not be found
064            * @throws SystemException if a system exception occurred
065            */
066            @Override
067            public com.liferay.portal.model.LayoutFriendlyURL deleteLayoutFriendlyURL(
068                    long layoutFriendlyURLId)
069                    throws com.liferay.portal.kernel.exception.PortalException,
070                            com.liferay.portal.kernel.exception.SystemException {
071                    return _layoutFriendlyURLLocalService.deleteLayoutFriendlyURL(layoutFriendlyURLId);
072            }
073    
074            /**
075            * Deletes the layout friendly u r l from the database. Also notifies the appropriate model listeners.
076            *
077            * @param layoutFriendlyURL the layout friendly u r l
078            * @return the layout friendly u r l that was removed
079            * @throws SystemException if a system exception occurred
080            */
081            @Override
082            public com.liferay.portal.model.LayoutFriendlyURL deleteLayoutFriendlyURL(
083                    com.liferay.portal.model.LayoutFriendlyURL layoutFriendlyURL)
084                    throws com.liferay.portal.kernel.exception.SystemException {
085                    return _layoutFriendlyURLLocalService.deleteLayoutFriendlyURL(layoutFriendlyURL);
086            }
087    
088            @Override
089            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
090                    return _layoutFriendlyURLLocalService.dynamicQuery();
091            }
092    
093            /**
094            * Performs a dynamic query on the database and returns the matching rows.
095            *
096            * @param dynamicQuery the dynamic query
097            * @return the matching rows
098            * @throws SystemException if a system exception occurred
099            */
100            @Override
101            @SuppressWarnings("rawtypes")
102            public java.util.List dynamicQuery(
103                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
104                    throws com.liferay.portal.kernel.exception.SystemException {
105                    return _layoutFriendlyURLLocalService.dynamicQuery(dynamicQuery);
106            }
107    
108            /**
109            * Performs a dynamic query on the database and returns a range of the matching rows.
110            *
111            * <p>
112            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutFriendlyURLModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
113            * </p>
114            *
115            * @param dynamicQuery the dynamic query
116            * @param start the lower bound of the range of model instances
117            * @param end the upper bound of the range of model instances (not inclusive)
118            * @return the range of matching rows
119            * @throws SystemException if a system exception occurred
120            */
121            @Override
122            @SuppressWarnings("rawtypes")
123            public java.util.List dynamicQuery(
124                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
125                    int end) throws com.liferay.portal.kernel.exception.SystemException {
126                    return _layoutFriendlyURLLocalService.dynamicQuery(dynamicQuery, start,
127                            end);
128            }
129    
130            /**
131            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
132            *
133            * <p>
134            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutFriendlyURLModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
135            * </p>
136            *
137            * @param dynamicQuery the dynamic query
138            * @param start the lower bound of the range of model instances
139            * @param end the upper bound of the range of model instances (not inclusive)
140            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
141            * @return the ordered range of matching rows
142            * @throws SystemException if a system exception occurred
143            */
144            @Override
145            @SuppressWarnings("rawtypes")
146            public java.util.List dynamicQuery(
147                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148                    int end,
149                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150                    throws com.liferay.portal.kernel.exception.SystemException {
151                    return _layoutFriendlyURLLocalService.dynamicQuery(dynamicQuery, start,
152                            end, orderByComparator);
153            }
154    
155            /**
156            * Returns the number of rows that match the dynamic query.
157            *
158            * @param dynamicQuery the dynamic query
159            * @return the number of rows that match the dynamic query
160            * @throws SystemException if a system exception occurred
161            */
162            @Override
163            public long dynamicQueryCount(
164                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _layoutFriendlyURLLocalService.dynamicQueryCount(dynamicQuery);
167            }
168    
169            /**
170            * Returns the number of rows that match the dynamic query.
171            *
172            * @param dynamicQuery the dynamic query
173            * @param projection the projection to apply to the query
174            * @return the number of rows that match the dynamic query
175            * @throws SystemException if a system exception occurred
176            */
177            @Override
178            public long dynamicQueryCount(
179                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180                    com.liferay.portal.kernel.dao.orm.Projection projection)
181                    throws com.liferay.portal.kernel.exception.SystemException {
182                    return _layoutFriendlyURLLocalService.dynamicQueryCount(dynamicQuery,
183                            projection);
184            }
185    
186            @Override
187            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURL(
188                    long layoutFriendlyURLId)
189                    throws com.liferay.portal.kernel.exception.SystemException {
190                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURL(layoutFriendlyURLId);
191            }
192    
193            /**
194            * Returns the layout friendly u r l with the matching UUID and company.
195            *
196            * @param uuid the layout friendly u r l's UUID
197            * @param companyId the primary key of the company
198            * @return the matching layout friendly u r l, or <code>null</code> if a matching layout friendly u r l could not be found
199            * @throws SystemException if a system exception occurred
200            */
201            @Override
202            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURLByUuidAndCompanyId(
203                    java.lang.String uuid, long companyId)
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURLByUuidAndCompanyId(uuid,
206                            companyId);
207            }
208    
209            /**
210            * Returns the layout friendly u r l matching the UUID and group.
211            *
212            * @param uuid the layout friendly u r l's UUID
213            * @param groupId the primary key of the group
214            * @return the matching layout friendly u r l, or <code>null</code> if a matching layout friendly u r l could not be found
215            * @throws SystemException if a system exception occurred
216            */
217            @Override
218            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURLByUuidAndGroupId(
219                    java.lang.String uuid, long groupId)
220                    throws com.liferay.portal.kernel.exception.SystemException {
221                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURLByUuidAndGroupId(uuid,
222                            groupId);
223            }
224    
225            /**
226            * Returns the layout friendly u r l with the primary key.
227            *
228            * @param layoutFriendlyURLId the primary key of the layout friendly u r l
229            * @return the layout friendly u r l
230            * @throws PortalException if a layout friendly u r l with the primary key could not be found
231            * @throws SystemException if a system exception occurred
232            */
233            @Override
234            public com.liferay.portal.model.LayoutFriendlyURL getLayoutFriendlyURL(
235                    long layoutFriendlyURLId)
236                    throws com.liferay.portal.kernel.exception.PortalException,
237                            com.liferay.portal.kernel.exception.SystemException {
238                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURL(layoutFriendlyURLId);
239            }
240    
241            @Override
242            public com.liferay.portal.model.PersistedModel getPersistedModel(
243                    java.io.Serializable primaryKeyObj)
244                    throws com.liferay.portal.kernel.exception.PortalException,
245                            com.liferay.portal.kernel.exception.SystemException {
246                    return _layoutFriendlyURLLocalService.getPersistedModel(primaryKeyObj);
247            }
248    
249            /**
250            * Returns the layout friendly u r l with the matching UUID and company.
251            *
252            * @param uuid the layout friendly u r l's UUID
253            * @param companyId the primary key of the company
254            * @return the matching layout friendly u r l
255            * @throws PortalException if a matching layout friendly u r l could not be found
256            * @throws SystemException if a system exception occurred
257            */
258            @Override
259            public com.liferay.portal.model.LayoutFriendlyURL getLayoutFriendlyURLByUuidAndCompanyId(
260                    java.lang.String uuid, long companyId)
261                    throws com.liferay.portal.kernel.exception.PortalException,
262                            com.liferay.portal.kernel.exception.SystemException {
263                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLByUuidAndCompanyId(uuid,
264                            companyId);
265            }
266    
267            /**
268            * Returns the layout friendly u r l matching the UUID and group.
269            *
270            * @param uuid the layout friendly u r l's UUID
271            * @param groupId the primary key of the group
272            * @return the matching layout friendly u r l
273            * @throws PortalException if a matching layout friendly u r l could not be found
274            * @throws SystemException if a system exception occurred
275            */
276            @Override
277            public com.liferay.portal.model.LayoutFriendlyURL getLayoutFriendlyURLByUuidAndGroupId(
278                    java.lang.String uuid, long groupId)
279                    throws com.liferay.portal.kernel.exception.PortalException,
280                            com.liferay.portal.kernel.exception.SystemException {
281                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLByUuidAndGroupId(uuid,
282                            groupId);
283            }
284    
285            /**
286            * Returns a range of all the layout friendly u r ls.
287            *
288            * <p>
289            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutFriendlyURLModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
290            * </p>
291            *
292            * @param start the lower bound of the range of layout friendly u r ls
293            * @param end the upper bound of the range of layout friendly u r ls (not inclusive)
294            * @return the range of layout friendly u r ls
295            * @throws SystemException if a system exception occurred
296            */
297            @Override
298            public java.util.List<com.liferay.portal.model.LayoutFriendlyURL> getLayoutFriendlyURLs(
299                    int start, int end)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLs(start, end);
302            }
303    
304            /**
305            * Returns the number of layout friendly u r ls.
306            *
307            * @return the number of layout friendly u r ls
308            * @throws SystemException if a system exception occurred
309            */
310            @Override
311            public int getLayoutFriendlyURLsCount()
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLsCount();
314            }
315    
316            /**
317            * Updates the layout friendly u r l in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
318            *
319            * @param layoutFriendlyURL the layout friendly u r l
320            * @return the layout friendly u r l that was updated
321            * @throws SystemException if a system exception occurred
322            */
323            @Override
324            public com.liferay.portal.model.LayoutFriendlyURL updateLayoutFriendlyURL(
325                    com.liferay.portal.model.LayoutFriendlyURL layoutFriendlyURL)
326                    throws com.liferay.portal.kernel.exception.SystemException {
327                    return _layoutFriendlyURLLocalService.updateLayoutFriendlyURL(layoutFriendlyURL);
328            }
329    
330            /**
331            * Returns the Spring bean ID for this bean.
332            *
333            * @return the Spring bean ID for this bean
334            */
335            @Override
336            public java.lang.String getBeanIdentifier() {
337                    return _layoutFriendlyURLLocalService.getBeanIdentifier();
338            }
339    
340            /**
341            * Sets the Spring bean ID for this bean.
342            *
343            * @param beanIdentifier the Spring bean ID for this bean
344            */
345            @Override
346            public void setBeanIdentifier(java.lang.String beanIdentifier) {
347                    _layoutFriendlyURLLocalService.setBeanIdentifier(beanIdentifier);
348            }
349    
350            @Override
351            public com.liferay.portal.model.LayoutFriendlyURL addLayoutFriendlyURL(
352                    long userId, long companyId, long groupId, long plid,
353                    boolean privateLayout, java.lang.String friendlyURL,
354                    java.lang.String languageId,
355                    com.liferay.portal.service.ServiceContext serviceContext)
356                    throws com.liferay.portal.kernel.exception.PortalException,
357                            com.liferay.portal.kernel.exception.SystemException {
358                    return _layoutFriendlyURLLocalService.addLayoutFriendlyURL(userId,
359                            companyId, groupId, plid, privateLayout, friendlyURL, languageId,
360                            serviceContext);
361            }
362    
363            @Override
364            public java.util.List<com.liferay.portal.model.LayoutFriendlyURL> addLayoutFriendlyURLs(
365                    long userId, long companyId, long groupId, long plid,
366                    boolean privateLayout,
367                    java.util.Map<java.util.Locale, java.lang.String> friendlyURLMap,
368                    com.liferay.portal.service.ServiceContext serviceContext)
369                    throws com.liferay.portal.kernel.exception.PortalException,
370                            com.liferay.portal.kernel.exception.SystemException {
371                    return _layoutFriendlyURLLocalService.addLayoutFriendlyURLs(userId,
372                            companyId, groupId, plid, privateLayout, friendlyURLMap,
373                            serviceContext);
374            }
375    
376            @Override
377            public void deleteLayoutFriendlyURL(long plid, java.lang.String languageId)
378                    throws com.liferay.portal.kernel.exception.SystemException {
379                    _layoutFriendlyURLLocalService.deleteLayoutFriendlyURL(plid, languageId);
380            }
381    
382            @Override
383            public void deleteLayoutFriendlyURLs(long plid)
384                    throws com.liferay.portal.kernel.exception.SystemException {
385                    _layoutFriendlyURLLocalService.deleteLayoutFriendlyURLs(plid);
386            }
387    
388            @Override
389            public com.liferay.portal.model.LayoutFriendlyURL fetchFirstLayoutFriendlyURL(
390                    long groupId, boolean privateLayout, java.lang.String friendlyURL)
391                    throws com.liferay.portal.kernel.exception.SystemException {
392                    return _layoutFriendlyURLLocalService.fetchFirstLayoutFriendlyURL(groupId,
393                            privateLayout, friendlyURL);
394            }
395    
396            @Override
397            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURL(
398                    long groupId, boolean privateLayout, java.lang.String friendlyURL,
399                    java.lang.String languageId)
400                    throws com.liferay.portal.kernel.exception.SystemException {
401                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURL(groupId,
402                            privateLayout, friendlyURL, languageId);
403            }
404    
405            @Override
406            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURL(
407                    long plid, java.lang.String languageId)
408                    throws com.liferay.portal.kernel.exception.SystemException {
409                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURL(plid,
410                            languageId);
411            }
412    
413            @Override
414            public com.liferay.portal.model.LayoutFriendlyURL fetchLayoutFriendlyURL(
415                    long plid, java.lang.String languageId, boolean useDefault)
416                    throws com.liferay.portal.kernel.exception.SystemException {
417                    return _layoutFriendlyURLLocalService.fetchLayoutFriendlyURL(plid,
418                            languageId, useDefault);
419            }
420    
421            @Override
422            public com.liferay.portal.model.LayoutFriendlyURL getLayoutFriendlyURL(
423                    long plid, java.lang.String languageId)
424                    throws com.liferay.portal.kernel.exception.PortalException,
425                            com.liferay.portal.kernel.exception.SystemException {
426                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURL(plid,
427                            languageId);
428            }
429    
430            @Override
431            public com.liferay.portal.model.LayoutFriendlyURL getLayoutFriendlyURL(
432                    long plid, java.lang.String languageId, boolean useDefault)
433                    throws com.liferay.portal.kernel.exception.PortalException,
434                            com.liferay.portal.kernel.exception.SystemException {
435                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURL(plid,
436                            languageId, useDefault);
437            }
438    
439            @Override
440            public java.util.List<com.liferay.portal.model.LayoutFriendlyURL> getLayoutFriendlyURLs(
441                    long plid) throws com.liferay.portal.kernel.exception.SystemException {
442                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLs(plid);
443            }
444    
445            @Override
446            public java.util.List<com.liferay.portal.model.LayoutFriendlyURL> getLayoutFriendlyURLs(
447                    long plid, java.lang.String friendlyURL, int start, int end)
448                    throws com.liferay.portal.kernel.exception.SystemException {
449                    return _layoutFriendlyURLLocalService.getLayoutFriendlyURLs(plid,
450                            friendlyURL, start, end);
451            }
452    
453            @Override
454            public com.liferay.portal.model.LayoutFriendlyURL updateLayoutFriendlyURL(
455                    long userId, long companyId, long groupId, long plid,
456                    boolean privateLayout, java.lang.String friendlyURL,
457                    java.lang.String languageId,
458                    com.liferay.portal.service.ServiceContext serviceContext)
459                    throws com.liferay.portal.kernel.exception.PortalException,
460                            com.liferay.portal.kernel.exception.SystemException {
461                    return _layoutFriendlyURLLocalService.updateLayoutFriendlyURL(userId,
462                            companyId, groupId, plid, privateLayout, friendlyURL, languageId,
463                            serviceContext);
464            }
465    
466            @Override
467            public java.util.List<com.liferay.portal.model.LayoutFriendlyURL> updateLayoutFriendlyURLs(
468                    long userId, long companyId, long groupId, long plid,
469                    boolean privateLayout,
470                    java.util.Map<java.util.Locale, java.lang.String> friendlyURLMap,
471                    com.liferay.portal.service.ServiceContext serviceContext)
472                    throws com.liferay.portal.kernel.exception.PortalException,
473                            com.liferay.portal.kernel.exception.SystemException {
474                    return _layoutFriendlyURLLocalService.updateLayoutFriendlyURLs(userId,
475                            companyId, groupId, plid, privateLayout, friendlyURLMap,
476                            serviceContext);
477            }
478    
479            /**
480             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
481             */
482            public LayoutFriendlyURLLocalService getWrappedLayoutFriendlyURLLocalService() {
483                    return _layoutFriendlyURLLocalService;
484            }
485    
486            /**
487             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
488             */
489            public void setWrappedLayoutFriendlyURLLocalService(
490                    LayoutFriendlyURLLocalService layoutFriendlyURLLocalService) {
491                    _layoutFriendlyURLLocalService = layoutFriendlyURLLocalService;
492            }
493    
494            @Override
495            public LayoutFriendlyURLLocalService getWrappedService() {
496                    return _layoutFriendlyURLLocalService;
497            }
498    
499            @Override
500            public void setWrappedService(
501                    LayoutFriendlyURLLocalService layoutFriendlyURLLocalService) {
502                    _layoutFriendlyURLLocalService = layoutFriendlyURLLocalService;
503            }
504    
505            private LayoutFriendlyURLLocalService _layoutFriendlyURLLocalService;
506    }