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.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            * Updates the d d m structure in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
251            *
252            * @param ddmStructure the d d m structure
253            * @param merge whether to merge the d d m structure with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
254            * @return the d d m structure that was updated
255            * @throws SystemException if a system exception occurred
256            */
257            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateDDMStructure(
258                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure,
259                    boolean merge)
260                    throws com.liferay.portal.kernel.exception.SystemException {
261                    return _ddmStructureLocalService.updateDDMStructure(ddmStructure, merge);
262            }
263    
264            /**
265            * @throws SystemException if a system exception occurred
266            */
267            public void addDLFileEntryTypeDDMStructure(long fileEntryTypeId,
268                    long structureId)
269                    throws com.liferay.portal.kernel.exception.SystemException {
270                    _ddmStructureLocalService.addDLFileEntryTypeDDMStructure(fileEntryTypeId,
271                            structureId);
272            }
273    
274            /**
275            * @throws SystemException if a system exception occurred
276            */
277            public void addDLFileEntryTypeDDMStructure(long fileEntryTypeId,
278                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure)
279                    throws com.liferay.portal.kernel.exception.SystemException {
280                    _ddmStructureLocalService.addDLFileEntryTypeDDMStructure(fileEntryTypeId,
281                            ddmStructure);
282            }
283    
284            /**
285            * @throws SystemException if a system exception occurred
286            */
287            public void addDLFileEntryTypeDDMStructures(long fileEntryTypeId,
288                    long[] structureIds)
289                    throws com.liferay.portal.kernel.exception.SystemException {
290                    _ddmStructureLocalService.addDLFileEntryTypeDDMStructures(fileEntryTypeId,
291                            structureIds);
292            }
293    
294            /**
295            * @throws SystemException if a system exception occurred
296            */
297            public void addDLFileEntryTypeDDMStructures(long fileEntryTypeId,
298                    java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> DDMStructures)
299                    throws com.liferay.portal.kernel.exception.SystemException {
300                    _ddmStructureLocalService.addDLFileEntryTypeDDMStructures(fileEntryTypeId,
301                            DDMStructures);
302            }
303    
304            /**
305            * @throws SystemException if a system exception occurred
306            */
307            public void clearDLFileEntryTypeDDMStructures(long fileEntryTypeId)
308                    throws com.liferay.portal.kernel.exception.SystemException {
309                    _ddmStructureLocalService.clearDLFileEntryTypeDDMStructures(fileEntryTypeId);
310            }
311    
312            /**
313            * @throws SystemException if a system exception occurred
314            */
315            public void deleteDLFileEntryTypeDDMStructure(long fileEntryTypeId,
316                    long structureId)
317                    throws com.liferay.portal.kernel.exception.SystemException {
318                    _ddmStructureLocalService.deleteDLFileEntryTypeDDMStructure(fileEntryTypeId,
319                            structureId);
320            }
321    
322            /**
323            * @throws SystemException if a system exception occurred
324            */
325            public void deleteDLFileEntryTypeDDMStructure(long fileEntryTypeId,
326                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure ddmStructure)
327                    throws com.liferay.portal.kernel.exception.SystemException {
328                    _ddmStructureLocalService.deleteDLFileEntryTypeDDMStructure(fileEntryTypeId,
329                            ddmStructure);
330            }
331    
332            /**
333            * @throws SystemException if a system exception occurred
334            */
335            public void deleteDLFileEntryTypeDDMStructures(long fileEntryTypeId,
336                    long[] structureIds)
337                    throws com.liferay.portal.kernel.exception.SystemException {
338                    _ddmStructureLocalService.deleteDLFileEntryTypeDDMStructures(fileEntryTypeId,
339                            structureIds);
340            }
341    
342            /**
343            * @throws SystemException if a system exception occurred
344            */
345            public void deleteDLFileEntryTypeDDMStructures(long fileEntryTypeId,
346                    java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> DDMStructures)
347                    throws com.liferay.portal.kernel.exception.SystemException {
348                    _ddmStructureLocalService.deleteDLFileEntryTypeDDMStructures(fileEntryTypeId,
349                            DDMStructures);
350            }
351    
352            /**
353            * @throws SystemException if a system exception occurred
354            */
355            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeDDMStructures(
356                    long fileEntryTypeId)
357                    throws com.liferay.portal.kernel.exception.SystemException {
358                    return _ddmStructureLocalService.getDLFileEntryTypeDDMStructures(fileEntryTypeId);
359            }
360    
361            /**
362            * @throws SystemException if a system exception occurred
363            */
364            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeDDMStructures(
365                    long fileEntryTypeId, int start, int end)
366                    throws com.liferay.portal.kernel.exception.SystemException {
367                    return _ddmStructureLocalService.getDLFileEntryTypeDDMStructures(fileEntryTypeId,
368                            start, end);
369            }
370    
371            /**
372            * @throws SystemException if a system exception occurred
373            */
374            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeDDMStructures(
375                    long fileEntryTypeId, int start, int end,
376                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
377                    throws com.liferay.portal.kernel.exception.SystemException {
378                    return _ddmStructureLocalService.getDLFileEntryTypeDDMStructures(fileEntryTypeId,
379                            start, end, orderByComparator);
380            }
381    
382            /**
383            * @throws SystemException if a system exception occurred
384            */
385            public int getDLFileEntryTypeDDMStructuresCount(long fileEntryTypeId)
386                    throws com.liferay.portal.kernel.exception.SystemException {
387                    return _ddmStructureLocalService.getDLFileEntryTypeDDMStructuresCount(fileEntryTypeId);
388            }
389    
390            /**
391            * @throws SystemException if a system exception occurred
392            */
393            public boolean hasDLFileEntryTypeDDMStructure(long fileEntryTypeId,
394                    long structureId)
395                    throws com.liferay.portal.kernel.exception.SystemException {
396                    return _ddmStructureLocalService.hasDLFileEntryTypeDDMStructure(fileEntryTypeId,
397                            structureId);
398            }
399    
400            /**
401            * @throws SystemException if a system exception occurred
402            */
403            public boolean hasDLFileEntryTypeDDMStructures(long fileEntryTypeId)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    return _ddmStructureLocalService.hasDLFileEntryTypeDDMStructures(fileEntryTypeId);
406            }
407    
408            /**
409            * @throws SystemException if a system exception occurred
410            */
411            public void setDLFileEntryTypeDDMStructures(long fileEntryTypeId,
412                    long[] structureIds)
413                    throws com.liferay.portal.kernel.exception.SystemException {
414                    _ddmStructureLocalService.setDLFileEntryTypeDDMStructures(fileEntryTypeId,
415                            structureIds);
416            }
417    
418            /**
419            * Returns the Spring bean ID for this bean.
420            *
421            * @return the Spring bean ID for this bean
422            */
423            public java.lang.String getBeanIdentifier() {
424                    return _ddmStructureLocalService.getBeanIdentifier();
425            }
426    
427            /**
428            * Sets the Spring bean ID for this bean.
429            *
430            * @param beanIdentifier the Spring bean ID for this bean
431            */
432            public void setBeanIdentifier(java.lang.String beanIdentifier) {
433                    _ddmStructureLocalService.setBeanIdentifier(beanIdentifier);
434            }
435    
436            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addStructure(
437                    long userId, long groupId, long classNameId,
438                    java.lang.String structureKey,
439                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
440                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
441                    java.lang.String xsd, java.lang.String storageType, int type,
442                    com.liferay.portal.service.ServiceContext serviceContext)
443                    throws com.liferay.portal.kernel.exception.PortalException,
444                            com.liferay.portal.kernel.exception.SystemException {
445                    return _ddmStructureLocalService.addStructure(userId, groupId,
446                            classNameId, structureKey, nameMap, descriptionMap, xsd,
447                            storageType, type, serviceContext);
448            }
449    
450            public void addStructureResources(
451                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
452                    boolean addGroupPermissions, boolean addGuestPermissions)
453                    throws com.liferay.portal.kernel.exception.PortalException,
454                            com.liferay.portal.kernel.exception.SystemException {
455                    _ddmStructureLocalService.addStructureResources(structure,
456                            addGroupPermissions, addGuestPermissions);
457            }
458    
459            public void addStructureResources(
460                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
461                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
462                    throws com.liferay.portal.kernel.exception.PortalException,
463                            com.liferay.portal.kernel.exception.SystemException {
464                    _ddmStructureLocalService.addStructureResources(structure,
465                            groupPermissions, guestPermissions);
466            }
467    
468            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure copyStructure(
469                    long userId, long structureId,
470                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
471                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
472                    com.liferay.portal.service.ServiceContext serviceContext)
473                    throws com.liferay.portal.kernel.exception.PortalException,
474                            com.liferay.portal.kernel.exception.SystemException {
475                    return _ddmStructureLocalService.copyStructure(userId, structureId,
476                            nameMap, descriptionMap, serviceContext);
477            }
478    
479            public void deleteStructure(
480                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure)
481                    throws com.liferay.portal.kernel.exception.PortalException,
482                            com.liferay.portal.kernel.exception.SystemException {
483                    _ddmStructureLocalService.deleteStructure(structure);
484            }
485    
486            public void deleteStructure(long structureId)
487                    throws com.liferay.portal.kernel.exception.PortalException,
488                            com.liferay.portal.kernel.exception.SystemException {
489                    _ddmStructureLocalService.deleteStructure(structureId);
490            }
491    
492            public void deleteStructure(long groupId, java.lang.String structureKey)
493                    throws com.liferay.portal.kernel.exception.PortalException,
494                            com.liferay.portal.kernel.exception.SystemException {
495                    _ddmStructureLocalService.deleteStructure(groupId, structureKey);
496            }
497    
498            public void deleteStructures(long groupId)
499                    throws com.liferay.portal.kernel.exception.PortalException,
500                            com.liferay.portal.kernel.exception.SystemException {
501                    _ddmStructureLocalService.deleteStructures(groupId);
502            }
503    
504            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
505                    long structureId)
506                    throws com.liferay.portal.kernel.exception.SystemException {
507                    return _ddmStructureLocalService.fetchStructure(structureId);
508            }
509    
510            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
511                    long groupId, java.lang.String structureKey)
512                    throws com.liferay.portal.kernel.exception.SystemException {
513                    return _ddmStructureLocalService.fetchStructure(groupId, structureKey);
514            }
515    
516            /**
517            * @deprecated {@link #getClassStructures(long, long)}
518            */
519            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
520                    long classNameId)
521                    throws com.liferay.portal.kernel.exception.SystemException {
522                    return _ddmStructureLocalService.getClassStructures(classNameId);
523            }
524    
525            /**
526            * @deprecated {@link #getClassStructures(long, long, int, int)}
527            */
528            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
529                    long classNameId, int start, int end)
530                    throws com.liferay.portal.kernel.exception.SystemException {
531                    return _ddmStructureLocalService.getClassStructures(classNameId, start,
532                            end);
533            }
534    
535            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
536                    long companyId, long classNameId)
537                    throws com.liferay.portal.kernel.exception.SystemException {
538                    return _ddmStructureLocalService.getClassStructures(companyId,
539                            classNameId);
540            }
541    
542            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
543                    long companyId, long classNameId, int start, int end)
544                    throws com.liferay.portal.kernel.exception.SystemException {
545                    return _ddmStructureLocalService.getClassStructures(companyId,
546                            classNameId, start, end);
547            }
548    
549            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
550                    long companyId, long classNameId,
551                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
552                    throws com.liferay.portal.kernel.exception.SystemException {
553                    return _ddmStructureLocalService.getClassStructures(companyId,
554                            classNameId, orderByComparator);
555            }
556    
557            /**
558            * @deprecated {@link #getClassStructures(long, long, OrderByComparator)}
559            */
560            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
561                    long classNameId,
562                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
563                    throws com.liferay.portal.kernel.exception.SystemException {
564                    return _ddmStructureLocalService.getClassStructures(classNameId,
565                            orderByComparator);
566            }
567    
568            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeStructures(
569                    long dlFileEntryTypeId)
570                    throws com.liferay.portal.kernel.exception.SystemException {
571                    return _ddmStructureLocalService.getDLFileEntryTypeStructures(dlFileEntryTypeId);
572            }
573    
574            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
575                    long structureId)
576                    throws com.liferay.portal.kernel.exception.PortalException,
577                            com.liferay.portal.kernel.exception.SystemException {
578                    return _ddmStructureLocalService.getStructure(structureId);
579            }
580    
581            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
582                    long groupId, java.lang.String structureKey)
583                    throws com.liferay.portal.kernel.exception.PortalException,
584                            com.liferay.portal.kernel.exception.SystemException {
585                    return _ddmStructureLocalService.getStructure(groupId, structureKey);
586            }
587    
588            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructure(
589                    long groupId, java.lang.String name, java.lang.String description)
590                    throws com.liferay.portal.kernel.exception.SystemException {
591                    return _ddmStructureLocalService.getStructure(groupId, name, description);
592            }
593    
594            /**
595            * @deprecated {@link #getStructures}
596            */
597            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries()
598                    throws com.liferay.portal.kernel.exception.SystemException {
599                    return _ddmStructureLocalService.getStructureEntries();
600            }
601    
602            /**
603            * @deprecated {@link #getStructures(long)}
604            */
605            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
606                    long groupId)
607                    throws com.liferay.portal.kernel.exception.SystemException {
608                    return _ddmStructureLocalService.getStructureEntries(groupId);
609            }
610    
611            /**
612            * @deprecated {@link #getStructures(long, int, int)}
613            */
614            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
615                    long groupId, int start, int end)
616                    throws com.liferay.portal.kernel.exception.SystemException {
617                    return _ddmStructureLocalService.getStructureEntries(groupId, start, end);
618            }
619    
620            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures()
621                    throws com.liferay.portal.kernel.exception.SystemException {
622                    return _ddmStructureLocalService.getStructures();
623            }
624    
625            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
626                    long groupId)
627                    throws com.liferay.portal.kernel.exception.SystemException {
628                    return _ddmStructureLocalService.getStructures(groupId);
629            }
630    
631            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
632                    long groupId, int start, int end)
633                    throws com.liferay.portal.kernel.exception.SystemException {
634                    return _ddmStructureLocalService.getStructures(groupId, start, end);
635            }
636    
637            public int getStructuresCount(long groupId)
638                    throws com.liferay.portal.kernel.exception.SystemException {
639                    return _ddmStructureLocalService.getStructuresCount(groupId);
640            }
641    
642            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
643                    long companyId, long[] groupIds, long[] classNameIds,
644                    java.lang.String keywords, int start, int end,
645                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
646                    throws com.liferay.portal.kernel.exception.SystemException {
647                    return _ddmStructureLocalService.search(companyId, groupIds,
648                            classNameIds, keywords, start, end, orderByComparator);
649            }
650    
651            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
652                    long companyId, long[] groupIds, long[] classNameIds,
653                    java.lang.String name, java.lang.String description,
654                    java.lang.String storageType, int type, boolean andOperator, int start,
655                    int end,
656                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
657                    throws com.liferay.portal.kernel.exception.SystemException {
658                    return _ddmStructureLocalService.search(companyId, groupIds,
659                            classNameIds, name, description, storageType, type, andOperator,
660                            start, end, orderByComparator);
661            }
662    
663            public int searchCount(long companyId, long[] groupIds,
664                    long[] classNameIds, java.lang.String keywords)
665                    throws com.liferay.portal.kernel.exception.SystemException {
666                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
667                            classNameIds, keywords);
668            }
669    
670            public int searchCount(long companyId, long[] groupIds,
671                    long[] classNameIds, java.lang.String name,
672                    java.lang.String description, java.lang.String storageType, int type,
673                    boolean andOperator)
674                    throws com.liferay.portal.kernel.exception.SystemException {
675                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
676                            classNameIds, name, description, storageType, type, andOperator);
677            }
678    
679            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
680                    long structureId,
681                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
682                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
683                    java.lang.String xsd,
684                    com.liferay.portal.service.ServiceContext serviceContext)
685                    throws com.liferay.portal.kernel.exception.PortalException,
686                            com.liferay.portal.kernel.exception.SystemException {
687                    return _ddmStructureLocalService.updateStructure(structureId, nameMap,
688                            descriptionMap, xsd, serviceContext);
689            }
690    
691            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
692                    long groupId, java.lang.String structureKey,
693                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
694                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
695                    java.lang.String xsd,
696                    com.liferay.portal.service.ServiceContext serviceContext)
697                    throws com.liferay.portal.kernel.exception.PortalException,
698                            com.liferay.portal.kernel.exception.SystemException {
699                    return _ddmStructureLocalService.updateStructure(groupId, structureKey,
700                            nameMap, descriptionMap, xsd, serviceContext);
701            }
702    
703            /**
704             * @deprecated Renamed to {@link #getWrappedService}
705             */
706            public DDMStructureLocalService getWrappedDDMStructureLocalService() {
707                    return _ddmStructureLocalService;
708            }
709    
710            /**
711             * @deprecated Renamed to {@link #setWrappedService}
712             */
713            public void setWrappedDDMStructureLocalService(
714                    DDMStructureLocalService ddmStructureLocalService) {
715                    _ddmStructureLocalService = ddmStructureLocalService;
716            }
717    
718            public DDMStructureLocalService getWrappedService() {
719                    return _ddmStructureLocalService;
720            }
721    
722            public void setWrappedService(
723                    DDMStructureLocalService ddmStructureLocalService) {
724                    _ddmStructureLocalService = ddmStructureLocalService;
725            }
726    
727            private DDMStructureLocalService _ddmStructureLocalService;
728    }