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. 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.portlet.dynamicdatamapping.model.impl.DDMStructureModelImpl}. 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.
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. 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.portlet.dynamicdatamapping.model.impl.DDMStructureModelImpl}. 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.
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. 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.portlet.dynamicdatamapping.model.impl.DDMStructureModelImpl}. 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.
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, java.lang.String parentStructureKey,
269                    long classNameId, 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                            parentStructureKey, classNameId, structureKey, nameMap,
278                            descriptionMap, xsd, storageType, type, serviceContext);
279            }
280    
281            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addStructure(
282                    long userId, long groupId, long parentStructureId, long classNameId,
283                    java.lang.String structureKey,
284                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
285                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
286                    java.lang.String xsd, java.lang.String storageType, int type,
287                    com.liferay.portal.service.ServiceContext serviceContext)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    return _ddmStructureLocalService.addStructure(userId, groupId,
291                            parentStructureId, classNameId, structureKey, nameMap,
292                            descriptionMap, xsd, storageType, type, serviceContext);
293            }
294    
295            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addStructure(
296                    long userId, long groupId, long classNameId,
297                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
298                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
299                    java.lang.String xsd,
300                    com.liferay.portal.service.ServiceContext serviceContext)
301                    throws com.liferay.portal.kernel.exception.PortalException,
302                            com.liferay.portal.kernel.exception.SystemException {
303                    return _ddmStructureLocalService.addStructure(userId, groupId,
304                            classNameId, nameMap, descriptionMap, xsd, serviceContext);
305            }
306    
307            public void addStructureResources(
308                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
309                    boolean addGroupPermissions, boolean addGuestPermissions)
310                    throws com.liferay.portal.kernel.exception.PortalException,
311                            com.liferay.portal.kernel.exception.SystemException {
312                    _ddmStructureLocalService.addStructureResources(structure,
313                            addGroupPermissions, addGuestPermissions);
314            }
315    
316            public void addStructureResources(
317                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
318                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
319                    throws com.liferay.portal.kernel.exception.PortalException,
320                            com.liferay.portal.kernel.exception.SystemException {
321                    _ddmStructureLocalService.addStructureResources(structure,
322                            groupPermissions, guestPermissions);
323            }
324    
325            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure copyStructure(
326                    long userId, long structureId,
327                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
328                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
329                    com.liferay.portal.service.ServiceContext serviceContext)
330                    throws com.liferay.portal.kernel.exception.PortalException,
331                            com.liferay.portal.kernel.exception.SystemException {
332                    return _ddmStructureLocalService.copyStructure(userId, structureId,
333                            nameMap, descriptionMap, serviceContext);
334            }
335    
336            public void deleteStructure(
337                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure)
338                    throws com.liferay.portal.kernel.exception.PortalException,
339                            com.liferay.portal.kernel.exception.SystemException {
340                    _ddmStructureLocalService.deleteStructure(structure);
341            }
342    
343            public void deleteStructure(long structureId)
344                    throws com.liferay.portal.kernel.exception.PortalException,
345                            com.liferay.portal.kernel.exception.SystemException {
346                    _ddmStructureLocalService.deleteStructure(structureId);
347            }
348    
349            public void deleteStructure(long groupId, java.lang.String structureKey)
350                    throws com.liferay.portal.kernel.exception.PortalException,
351                            com.liferay.portal.kernel.exception.SystemException {
352                    _ddmStructureLocalService.deleteStructure(groupId, structureKey);
353            }
354    
355            public void deleteStructures(long groupId)
356                    throws com.liferay.portal.kernel.exception.PortalException,
357                            com.liferay.portal.kernel.exception.SystemException {
358                    _ddmStructureLocalService.deleteStructures(groupId);
359            }
360    
361            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
362                    long structureId)
363                    throws com.liferay.portal.kernel.exception.SystemException {
364                    return _ddmStructureLocalService.fetchStructure(structureId);
365            }
366    
367            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
368                    long groupId, java.lang.String structureKey)
369                    throws com.liferay.portal.kernel.exception.SystemException {
370                    return _ddmStructureLocalService.fetchStructure(groupId, structureKey);
371            }
372    
373            /**
374            * @deprecated {@link #getClassStructures(long, long)}
375            */
376            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
377                    long classNameId)
378                    throws com.liferay.portal.kernel.exception.SystemException {
379                    return _ddmStructureLocalService.getClassStructures(classNameId);
380            }
381    
382            /**
383            * @deprecated {@link #getClassStructures(long, long, int, int)}
384            */
385            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
386                    long classNameId, int start, int end)
387                    throws com.liferay.portal.kernel.exception.SystemException {
388                    return _ddmStructureLocalService.getClassStructures(classNameId, start,
389                            end);
390            }
391    
392            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
393                    long companyId, long classNameId)
394                    throws com.liferay.portal.kernel.exception.SystemException {
395                    return _ddmStructureLocalService.getClassStructures(companyId,
396                            classNameId);
397            }
398    
399            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
400                    long companyId, long classNameId, int start, int end)
401                    throws com.liferay.portal.kernel.exception.SystemException {
402                    return _ddmStructureLocalService.getClassStructures(companyId,
403                            classNameId, start, end);
404            }
405    
406            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
407                    long companyId, long classNameId,
408                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
409                    throws com.liferay.portal.kernel.exception.SystemException {
410                    return _ddmStructureLocalService.getClassStructures(companyId,
411                            classNameId, orderByComparator);
412            }
413    
414            /**
415            * @deprecated {@link #getClassStructures(long, long, OrderByComparator)}
416            */
417            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
418                    long classNameId,
419                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
420                    throws com.liferay.portal.kernel.exception.SystemException {
421                    return _ddmStructureLocalService.getClassStructures(classNameId,
422                            orderByComparator);
423            }
424    
425            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeStructures(
426                    long dlFileEntryTypeId)
427                    throws com.liferay.portal.kernel.exception.SystemException {
428                    return _ddmStructureLocalService.getDLFileEntryTypeStructures(dlFileEntryTypeId);
429            }
430    
431            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
432                    long structureId)
433                    throws com.liferay.portal.kernel.exception.PortalException,
434                            com.liferay.portal.kernel.exception.SystemException {
435                    return _ddmStructureLocalService.getStructure(structureId);
436            }
437    
438            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
439                    long groupId, java.lang.String structureKey)
440                    throws com.liferay.portal.kernel.exception.PortalException,
441                            com.liferay.portal.kernel.exception.SystemException {
442                    return _ddmStructureLocalService.getStructure(groupId, structureKey);
443            }
444    
445            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
446                    long groupId, java.lang.String structureKey,
447                    boolean includeGlobalStructures)
448                    throws com.liferay.portal.kernel.exception.PortalException,
449                            com.liferay.portal.kernel.exception.SystemException {
450                    return _ddmStructureLocalService.getStructure(groupId, structureKey,
451                            includeGlobalStructures);
452            }
453    
454            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructure(
455                    long groupId, java.lang.String name, java.lang.String description)
456                    throws com.liferay.portal.kernel.exception.SystemException {
457                    return _ddmStructureLocalService.getStructure(groupId, name, description);
458            }
459    
460            /**
461            * @deprecated {@link #getStructures}
462            */
463            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries()
464                    throws com.liferay.portal.kernel.exception.SystemException {
465                    return _ddmStructureLocalService.getStructureEntries();
466            }
467    
468            /**
469            * @deprecated {@link #getStructures(long)}
470            */
471            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
472                    long groupId)
473                    throws com.liferay.portal.kernel.exception.SystemException {
474                    return _ddmStructureLocalService.getStructureEntries(groupId);
475            }
476    
477            /**
478            * @deprecated {@link #getStructures(long, int, int)}
479            */
480            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
481                    long groupId, int start, int end)
482                    throws com.liferay.portal.kernel.exception.SystemException {
483                    return _ddmStructureLocalService.getStructureEntries(groupId, start, end);
484            }
485    
486            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures()
487                    throws com.liferay.portal.kernel.exception.SystemException {
488                    return _ddmStructureLocalService.getStructures();
489            }
490    
491            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
492                    long groupId)
493                    throws com.liferay.portal.kernel.exception.SystemException {
494                    return _ddmStructureLocalService.getStructures(groupId);
495            }
496    
497            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
498                    long groupId, int start, int end)
499                    throws com.liferay.portal.kernel.exception.SystemException {
500                    return _ddmStructureLocalService.getStructures(groupId, start, end);
501            }
502    
503            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
504                    long groupId, long classNameId)
505                    throws com.liferay.portal.kernel.exception.SystemException {
506                    return _ddmStructureLocalService.getStructures(groupId, classNameId);
507            }
508    
509            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
510                    long groupId, long classNameId, int start, int end)
511                    throws com.liferay.portal.kernel.exception.SystemException {
512                    return _ddmStructureLocalService.getStructures(groupId, classNameId,
513                            start, end);
514            }
515    
516            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
517                    long groupId, long classNameId, int start, int end,
518                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
519                    throws com.liferay.portal.kernel.exception.SystemException {
520                    return _ddmStructureLocalService.getStructures(groupId, classNameId,
521                            start, end, orderByComparator);
522            }
523    
524            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
525                    long[] groupIds)
526                    throws com.liferay.portal.kernel.exception.SystemException {
527                    return _ddmStructureLocalService.getStructures(groupIds);
528            }
529    
530            public int getStructuresCount(long groupId)
531                    throws com.liferay.portal.kernel.exception.SystemException {
532                    return _ddmStructureLocalService.getStructuresCount(groupId);
533            }
534    
535            public int getStructuresCount(long groupId, long classNameId)
536                    throws com.liferay.portal.kernel.exception.SystemException {
537                    return _ddmStructureLocalService.getStructuresCount(groupId, classNameId);
538            }
539    
540            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
541                    long companyId, long[] groupIds, long[] classNameIds,
542                    java.lang.String keywords, int start, int end,
543                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
544                    throws com.liferay.portal.kernel.exception.SystemException {
545                    return _ddmStructureLocalService.search(companyId, groupIds,
546                            classNameIds, keywords, start, end, orderByComparator);
547            }
548    
549            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
550                    long companyId, long[] groupIds, long[] classNameIds,
551                    java.lang.String name, java.lang.String description,
552                    java.lang.String storageType, int type, boolean andOperator, int start,
553                    int end,
554                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
555                    throws com.liferay.portal.kernel.exception.SystemException {
556                    return _ddmStructureLocalService.search(companyId, groupIds,
557                            classNameIds, name, description, storageType, type, andOperator,
558                            start, end, orderByComparator);
559            }
560    
561            public int searchCount(long companyId, long[] groupIds,
562                    long[] classNameIds, java.lang.String keywords)
563                    throws com.liferay.portal.kernel.exception.SystemException {
564                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
565                            classNameIds, keywords);
566            }
567    
568            public int searchCount(long companyId, long[] groupIds,
569                    long[] classNameIds, java.lang.String name,
570                    java.lang.String description, java.lang.String storageType, int type,
571                    boolean andOperator)
572                    throws com.liferay.portal.kernel.exception.SystemException {
573                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
574                            classNameIds, name, description, storageType, type, andOperator);
575            }
576    
577            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
578                    long structureId, long parentStructureId,
579                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
580                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
581                    java.lang.String xsd,
582                    com.liferay.portal.service.ServiceContext serviceContext)
583                    throws com.liferay.portal.kernel.exception.PortalException,
584                            com.liferay.portal.kernel.exception.SystemException {
585                    return _ddmStructureLocalService.updateStructure(structureId,
586                            parentStructureId, nameMap, descriptionMap, xsd, serviceContext);
587            }
588    
589            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
590                    long groupId, long parentStructureId, java.lang.String structureKey,
591                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
592                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
593                    java.lang.String xsd,
594                    com.liferay.portal.service.ServiceContext serviceContext)
595                    throws com.liferay.portal.kernel.exception.PortalException,
596                            com.liferay.portal.kernel.exception.SystemException {
597                    return _ddmStructureLocalService.updateStructure(groupId,
598                            parentStructureId, structureKey, nameMap, descriptionMap, xsd,
599                            serviceContext);
600            }
601    
602            /**
603             * @deprecated Renamed to {@link #getWrappedService}
604             */
605            public DDMStructureLocalService getWrappedDDMStructureLocalService() {
606                    return _ddmStructureLocalService;
607            }
608    
609            /**
610             * @deprecated Renamed to {@link #setWrappedService}
611             */
612            public void setWrappedDDMStructureLocalService(
613                    DDMStructureLocalService ddmStructureLocalService) {
614                    _ddmStructureLocalService = ddmStructureLocalService;
615            }
616    
617            public DDMStructureLocalService getWrappedService() {
618                    return _ddmStructureLocalService;
619            }
620    
621            public void setWrappedService(
622                    DDMStructureLocalService ddmStructureLocalService) {
623                    _ddmStructureLocalService = ddmStructureLocalService;
624            }
625    
626            private DDMStructureLocalService _ddmStructureLocalService;
627    }