001    /**
002     * Copyright (c) 2000-2012 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.portlet.dynamicdatamapping.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link DDMStructureLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       DDMStructureLocalService
026     * @generated
027     */
028    public class DDMStructureLocalServiceWrapper implements DDMStructureLocalService,
029            ServiceWrapper<DDMStructureLocalService> {
030            public DDMStructureLocalServiceWrapper(
031                    DDMStructureLocalService ddmStructureLocalService) {
032                    _ddmStructureLocalService = ddmStructureLocalService;
033            }
034    
035            /**
036            * Adds the d d m structure to the database. Also notifies the appropriate model listeners.
037            *
038            * @param ddmStructure the d d m structure
039            * @return the d d m structure that was added
040            * @throws SystemException if a system exception occurred
041            */
042            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addDDMStructure(
043                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _ddmStructureLocalService.addDDMStructure(ddmStructure);
046            }
047    
048            /**
049            * Creates a new d d m structure with the primary key. Does not add the d d m structure to the database.
050            *
051            * @param structureId the primary key for the new d d m structure
052            * @return the new d d m structure
053            */
054            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure createDDMStructure(
055                    long structureId) {
056                    return _ddmStructureLocalService.createDDMStructure(structureId);
057            }
058    
059            /**
060            * Deletes the d d m structure with the primary key from the database. Also notifies the appropriate model listeners.
061            *
062            * @param structureId the primary key of the d d m structure
063            * @return the d d m structure that was removed
064            * @throws PortalException if a d d m structure with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure deleteDDMStructure(
068                    long structureId)
069                    throws com.liferay.portal.kernel.exception.PortalException,
070                            com.liferay.portal.kernel.exception.SystemException {
071                    return _ddmStructureLocalService.deleteDDMStructure(structureId);
072            }
073    
074            /**
075            * Deletes the d d m structure from the database. Also notifies the appropriate model listeners.
076            *
077            * @param ddmStructure the d d m structure
078            * @return the d d m structure that was removed
079            * @throws SystemException if a system exception occurred
080            */
081            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure deleteDDMStructure(
082                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure)
083                    throws com.liferay.portal.kernel.exception.SystemException {
084                    return _ddmStructureLocalService.deleteDDMStructure(ddmStructure);
085            }
086    
087            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088                    return _ddmStructureLocalService.dynamicQuery();
089            }
090    
091            /**
092            * Performs a dynamic query on the database and returns the matching rows.
093            *
094            * @param dynamicQuery the dynamic query
095            * @return the matching rows
096            * @throws SystemException if a system exception occurred
097            */
098            @SuppressWarnings("rawtypes")
099            public java.util.List dynamicQuery(
100                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101                    throws com.liferay.portal.kernel.exception.SystemException {
102                    return _ddmStructureLocalService.dynamicQuery(dynamicQuery);
103            }
104    
105            /**
106            * Performs a dynamic query on the database and returns a range of the matching rows.
107            *
108            * <p>
109            * 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.
110            * </p>
111            *
112            * @param dynamicQuery the dynamic query
113            * @param start the lower bound of the range of model instances
114            * @param end the upper bound of the range of model instances (not inclusive)
115            * @return the range of matching rows
116            * @throws SystemException if a system exception occurred
117            */
118            @SuppressWarnings("rawtypes")
119            public java.util.List dynamicQuery(
120                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121                    int end) throws com.liferay.portal.kernel.exception.SystemException {
122                    return _ddmStructureLocalService.dynamicQuery(dynamicQuery, start, end);
123            }
124    
125            /**
126            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
127            *
128            * <p>
129            * 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.
130            * </p>
131            *
132            * @param dynamicQuery the dynamic query
133            * @param start the lower bound of the range of model instances
134            * @param end the upper bound of the range of model instances (not inclusive)
135            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
136            * @return the ordered range of matching rows
137            * @throws SystemException if a system exception occurred
138            */
139            @SuppressWarnings("rawtypes")
140            public java.util.List dynamicQuery(
141                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142                    int end,
143                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144                    throws com.liferay.portal.kernel.exception.SystemException {
145                    return _ddmStructureLocalService.dynamicQuery(dynamicQuery, start, end,
146                            orderByComparator);
147            }
148    
149            /**
150            * Returns the number of rows that match the dynamic query.
151            *
152            * @param dynamicQuery the dynamic query
153            * @return the number of rows that match the dynamic query
154            * @throws SystemException if a system exception occurred
155            */
156            public long dynamicQueryCount(
157                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158                    throws com.liferay.portal.kernel.exception.SystemException {
159                    return _ddmStructureLocalService.dynamicQueryCount(dynamicQuery);
160            }
161    
162            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchDDMStructure(
163                    long structureId)
164                    throws com.liferay.portal.kernel.exception.SystemException {
165                    return _ddmStructureLocalService.fetchDDMStructure(structureId);
166            }
167    
168            /**
169            * Returns the d d m structure with the primary key.
170            *
171            * @param structureId the primary key of the d d m structure
172            * @return the d d m structure
173            * @throws PortalException if a d d m structure with the primary key could not be found
174            * @throws SystemException if a system exception occurred
175            */
176            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getDDMStructure(
177                    long structureId)
178                    throws com.liferay.portal.kernel.exception.PortalException,
179                            com.liferay.portal.kernel.exception.SystemException {
180                    return _ddmStructureLocalService.getDDMStructure(structureId);
181            }
182    
183            public com.liferay.portal.model.PersistedModel getPersistedModel(
184                    java.io.Serializable primaryKeyObj)
185                    throws com.liferay.portal.kernel.exception.PortalException,
186                            com.liferay.portal.kernel.exception.SystemException {
187                    return _ddmStructureLocalService.getPersistedModel(primaryKeyObj);
188            }
189    
190            /**
191            * Returns the d d m structure with the UUID in the group.
192            *
193            * @param uuid the UUID of d d m structure
194            * @param groupId the group id of the d d m structure
195            * @return the d d m structure
196            * @throws PortalException if a d d m structure with the UUID in the group could not be found
197            * @throws SystemException if a system exception occurred
198            */
199            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getDDMStructureByUuidAndGroupId(
200                    java.lang.String uuid, long groupId)
201                    throws com.liferay.portal.kernel.exception.PortalException,
202                            com.liferay.portal.kernel.exception.SystemException {
203                    return _ddmStructureLocalService.getDDMStructureByUuidAndGroupId(uuid,
204                            groupId);
205            }
206    
207            /**
208            * Returns a range of all the d d m structures.
209            *
210            * <p>
211            * 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.
212            * </p>
213            *
214            * @param start the lower bound of the range of d d m structures
215            * @param end the upper bound of the range of d d m structures (not inclusive)
216            * @return the range of d d m structures
217            * @throws SystemException if a system exception occurred
218            */
219            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDDMStructures(
220                    int start, int end)
221                    throws com.liferay.portal.kernel.exception.SystemException {
222                    return _ddmStructureLocalService.getDDMStructures(start, end);
223            }
224    
225            /**
226            * Returns the number of d d m structures.
227            *
228            * @return the number of d d m structures
229            * @throws SystemException if a system exception occurred
230            */
231            public int getDDMStructuresCount()
232                    throws com.liferay.portal.kernel.exception.SystemException {
233                    return _ddmStructureLocalService.getDDMStructuresCount();
234            }
235    
236            /**
237            * Updates the d d m structure in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
238            *
239            * @param ddmStructure the d d m structure
240            * @return the d d m structure that was updated
241            * @throws SystemException if a system exception occurred
242            */
243            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateDDMStructure(
244                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure)
245                    throws com.liferay.portal.kernel.exception.SystemException {
246                    return _ddmStructureLocalService.updateDDMStructure(ddmStructure);
247            }
248    
249            /**
250            * Returns the Spring bean ID for this bean.
251            *
252            * @return the Spring bean ID for this bean
253            */
254            public java.lang.String getBeanIdentifier() {
255                    return _ddmStructureLocalService.getBeanIdentifier();
256            }
257    
258            /**
259            * Sets the Spring bean ID for this bean.
260            *
261            * @param beanIdentifier the Spring bean ID for this bean
262            */
263            public void setBeanIdentifier(java.lang.String beanIdentifier) {
264                    _ddmStructureLocalService.setBeanIdentifier(beanIdentifier);
265            }
266    
267            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addStructure(
268                    long userId, long groupId, long parentStructureId, long classNameId,
269                    java.lang.String structureKey,
270                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
271                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
272                    java.lang.String xsd, java.lang.String storageType, int type,
273                    com.liferay.portal.service.ServiceContext serviceContext)
274                    throws com.liferay.portal.kernel.exception.PortalException,
275                            com.liferay.portal.kernel.exception.SystemException {
276                    return _ddmStructureLocalService.addStructure(userId, groupId,
277                            parentStructureId, classNameId, structureKey, nameMap,
278                            descriptionMap, xsd, storageType, type, serviceContext);
279            }
280    
281            public void addStructureResources(
282                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
283                    boolean addGroupPermissions, boolean addGuestPermissions)
284                    throws com.liferay.portal.kernel.exception.PortalException,
285                            com.liferay.portal.kernel.exception.SystemException {
286                    _ddmStructureLocalService.addStructureResources(structure,
287                            addGroupPermissions, addGuestPermissions);
288            }
289    
290            public void addStructureResources(
291                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
292                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
293                    throws com.liferay.portal.kernel.exception.PortalException,
294                            com.liferay.portal.kernel.exception.SystemException {
295                    _ddmStructureLocalService.addStructureResources(structure,
296                            groupPermissions, guestPermissions);
297            }
298    
299            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure copyStructure(
300                    long userId, long structureId,
301                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
302                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
303                    com.liferay.portal.service.ServiceContext serviceContext)
304                    throws com.liferay.portal.kernel.exception.PortalException,
305                            com.liferay.portal.kernel.exception.SystemException {
306                    return _ddmStructureLocalService.copyStructure(userId, structureId,
307                            nameMap, descriptionMap, serviceContext);
308            }
309    
310            public void deleteStructure(
311                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure)
312                    throws com.liferay.portal.kernel.exception.PortalException,
313                            com.liferay.portal.kernel.exception.SystemException {
314                    _ddmStructureLocalService.deleteStructure(structure);
315            }
316    
317            public void deleteStructure(long structureId)
318                    throws com.liferay.portal.kernel.exception.PortalException,
319                            com.liferay.portal.kernel.exception.SystemException {
320                    _ddmStructureLocalService.deleteStructure(structureId);
321            }
322    
323            public void deleteStructure(long groupId, java.lang.String structureKey)
324                    throws com.liferay.portal.kernel.exception.PortalException,
325                            com.liferay.portal.kernel.exception.SystemException {
326                    _ddmStructureLocalService.deleteStructure(groupId, structureKey);
327            }
328    
329            public void deleteStructures(long groupId)
330                    throws com.liferay.portal.kernel.exception.PortalException,
331                            com.liferay.portal.kernel.exception.SystemException {
332                    _ddmStructureLocalService.deleteStructures(groupId);
333            }
334    
335            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
336                    long structureId)
337                    throws com.liferay.portal.kernel.exception.SystemException {
338                    return _ddmStructureLocalService.fetchStructure(structureId);
339            }
340    
341            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
342                    long groupId, java.lang.String structureKey)
343                    throws com.liferay.portal.kernel.exception.SystemException {
344                    return _ddmStructureLocalService.fetchStructure(groupId, structureKey);
345            }
346    
347            /**
348            * @deprecated {@link #getClassStructures(long, long)}
349            */
350            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
351                    long classNameId)
352                    throws com.liferay.portal.kernel.exception.SystemException {
353                    return _ddmStructureLocalService.getClassStructures(classNameId);
354            }
355    
356            /**
357            * @deprecated {@link #getClassStructures(long, long, int, int)}
358            */
359            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
360                    long classNameId, int start, int end)
361                    throws com.liferay.portal.kernel.exception.SystemException {
362                    return _ddmStructureLocalService.getClassStructures(classNameId, start,
363                            end);
364            }
365    
366            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
367                    long companyId, long classNameId)
368                    throws com.liferay.portal.kernel.exception.SystemException {
369                    return _ddmStructureLocalService.getClassStructures(companyId,
370                            classNameId);
371            }
372    
373            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
374                    long companyId, long classNameId, int start, int end)
375                    throws com.liferay.portal.kernel.exception.SystemException {
376                    return _ddmStructureLocalService.getClassStructures(companyId,
377                            classNameId, start, end);
378            }
379    
380            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
381                    long companyId, long classNameId,
382                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
383                    throws com.liferay.portal.kernel.exception.SystemException {
384                    return _ddmStructureLocalService.getClassStructures(companyId,
385                            classNameId, orderByComparator);
386            }
387    
388            /**
389            * @deprecated {@link #getClassStructures(long, long, OrderByComparator)}
390            */
391            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
392                    long classNameId,
393                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
394                    throws com.liferay.portal.kernel.exception.SystemException {
395                    return _ddmStructureLocalService.getClassStructures(classNameId,
396                            orderByComparator);
397            }
398    
399            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeStructures(
400                    long dlFileEntryTypeId)
401                    throws com.liferay.portal.kernel.exception.SystemException {
402                    return _ddmStructureLocalService.getDLFileEntryTypeStructures(dlFileEntryTypeId);
403            }
404    
405            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
406                    long structureId)
407                    throws com.liferay.portal.kernel.exception.PortalException,
408                            com.liferay.portal.kernel.exception.SystemException {
409                    return _ddmStructureLocalService.getStructure(structureId);
410            }
411    
412            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
413                    long groupId, java.lang.String structureKey)
414                    throws com.liferay.portal.kernel.exception.PortalException,
415                            com.liferay.portal.kernel.exception.SystemException {
416                    return _ddmStructureLocalService.getStructure(groupId, structureKey);
417            }
418    
419            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructure(
420                    long groupId, java.lang.String name, java.lang.String description)
421                    throws com.liferay.portal.kernel.exception.SystemException {
422                    return _ddmStructureLocalService.getStructure(groupId, name, description);
423            }
424    
425            /**
426            * @deprecated {@link #getStructures}
427            */
428            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries()
429                    throws com.liferay.portal.kernel.exception.SystemException {
430                    return _ddmStructureLocalService.getStructureEntries();
431            }
432    
433            /**
434            * @deprecated {@link #getStructures(long)}
435            */
436            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
437                    long groupId)
438                    throws com.liferay.portal.kernel.exception.SystemException {
439                    return _ddmStructureLocalService.getStructureEntries(groupId);
440            }
441    
442            /**
443            * @deprecated {@link #getStructures(long, int, int)}
444            */
445            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
446                    long groupId, int start, int end)
447                    throws com.liferay.portal.kernel.exception.SystemException {
448                    return _ddmStructureLocalService.getStructureEntries(groupId, start, end);
449            }
450    
451            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures()
452                    throws com.liferay.portal.kernel.exception.SystemException {
453                    return _ddmStructureLocalService.getStructures();
454            }
455    
456            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
457                    long groupId)
458                    throws com.liferay.portal.kernel.exception.SystemException {
459                    return _ddmStructureLocalService.getStructures(groupId);
460            }
461    
462            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
463                    long groupId, int start, int end)
464                    throws com.liferay.portal.kernel.exception.SystemException {
465                    return _ddmStructureLocalService.getStructures(groupId, start, end);
466            }
467    
468            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
469                    long[] groupIds)
470                    throws com.liferay.portal.kernel.exception.SystemException {
471                    return _ddmStructureLocalService.getStructures(groupIds);
472            }
473    
474            public int getStructuresCount(long groupId)
475                    throws com.liferay.portal.kernel.exception.SystemException {
476                    return _ddmStructureLocalService.getStructuresCount(groupId);
477            }
478    
479            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
480                    long companyId, long[] groupIds, long[] classNameIds,
481                    java.lang.String keywords, int start, int end,
482                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
483                    throws com.liferay.portal.kernel.exception.SystemException {
484                    return _ddmStructureLocalService.search(companyId, groupIds,
485                            classNameIds, keywords, start, end, orderByComparator);
486            }
487    
488            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
489                    long companyId, long[] groupIds, long[] classNameIds,
490                    java.lang.String name, java.lang.String description,
491                    java.lang.String storageType, int type, boolean andOperator, int start,
492                    int end,
493                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
494                    throws com.liferay.portal.kernel.exception.SystemException {
495                    return _ddmStructureLocalService.search(companyId, groupIds,
496                            classNameIds, name, description, storageType, type, andOperator,
497                            start, end, orderByComparator);
498            }
499    
500            public int searchCount(long companyId, long[] groupIds,
501                    long[] classNameIds, java.lang.String keywords)
502                    throws com.liferay.portal.kernel.exception.SystemException {
503                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
504                            classNameIds, keywords);
505            }
506    
507            public int searchCount(long companyId, long[] groupIds,
508                    long[] classNameIds, java.lang.String name,
509                    java.lang.String description, java.lang.String storageType, int type,
510                    boolean andOperator)
511                    throws com.liferay.portal.kernel.exception.SystemException {
512                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
513                            classNameIds, name, description, storageType, type, andOperator);
514            }
515    
516            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
517                    long structureId, long parentStructureId,
518                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
519                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
520                    java.lang.String xsd,
521                    com.liferay.portal.service.ServiceContext serviceContext)
522                    throws com.liferay.portal.kernel.exception.PortalException,
523                            com.liferay.portal.kernel.exception.SystemException {
524                    return _ddmStructureLocalService.updateStructure(structureId,
525                            parentStructureId, nameMap, descriptionMap, xsd, serviceContext);
526            }
527    
528            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
529                    long groupId, long parentStructureId, java.lang.String structureKey,
530                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
531                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
532                    java.lang.String xsd,
533                    com.liferay.portal.service.ServiceContext serviceContext)
534                    throws com.liferay.portal.kernel.exception.PortalException,
535                            com.liferay.portal.kernel.exception.SystemException {
536                    return _ddmStructureLocalService.updateStructure(groupId,
537                            parentStructureId, structureKey, nameMap, descriptionMap, xsd,
538                            serviceContext);
539            }
540    
541            /**
542             * @deprecated Renamed to {@link #getWrappedService}
543             */
544            public DDMStructureLocalService getWrappedDDMStructureLocalService() {
545                    return _ddmStructureLocalService;
546            }
547    
548            /**
549             * @deprecated Renamed to {@link #setWrappedService}
550             */
551            public void setWrappedDDMStructureLocalService(
552                    DDMStructureLocalService ddmStructureLocalService) {
553                    _ddmStructureLocalService = ddmStructureLocalService;
554            }
555    
556            public DDMStructureLocalService getWrappedService() {
557                    return _ddmStructureLocalService;
558            }
559    
560            public void setWrappedService(
561                    DDMStructureLocalService ddmStructureLocalService) {
562                    _ddmStructureLocalService = ddmStructureLocalService;
563            }
564    
565            private DDMStructureLocalService _ddmStructureLocalService;
566    }