001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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            * Returns the Spring bean ID for this bean.
266            *
267            * @return the Spring bean ID for this bean
268            */
269            public java.lang.String getBeanIdentifier() {
270                    return _ddmStructureLocalService.getBeanIdentifier();
271            }
272    
273            /**
274            * Sets the Spring bean ID for this bean.
275            *
276            * @param beanIdentifier the Spring bean ID for this bean
277            */
278            public void setBeanIdentifier(java.lang.String beanIdentifier) {
279                    _ddmStructureLocalService.setBeanIdentifier(beanIdentifier);
280            }
281    
282            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure addStructure(
283                    long userId, long groupId, long classNameId,
284                    java.lang.String structureKey,
285                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
286                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
287                    java.lang.String xsd, java.lang.String storageType, int type,
288                    com.liferay.portal.service.ServiceContext serviceContext)
289                    throws com.liferay.portal.kernel.exception.PortalException,
290                            com.liferay.portal.kernel.exception.SystemException {
291                    return _ddmStructureLocalService.addStructure(userId, groupId,
292                            classNameId, structureKey, nameMap, descriptionMap, xsd,
293                            storageType, type, serviceContext);
294            }
295    
296            public void addStructureResources(
297                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
298                    boolean addGroupPermissions, boolean addGuestPermissions)
299                    throws com.liferay.portal.kernel.exception.PortalException,
300                            com.liferay.portal.kernel.exception.SystemException {
301                    _ddmStructureLocalService.addStructureResources(structure,
302                            addGroupPermissions, addGuestPermissions);
303            }
304    
305            public void addStructureResources(
306                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure,
307                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
308                    throws com.liferay.portal.kernel.exception.PortalException,
309                            com.liferay.portal.kernel.exception.SystemException {
310                    _ddmStructureLocalService.addStructureResources(structure,
311                            groupPermissions, guestPermissions);
312            }
313    
314            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure copyStructure(
315                    long userId, long structureId,
316                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
317                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
318                    com.liferay.portal.service.ServiceContext serviceContext)
319                    throws com.liferay.portal.kernel.exception.PortalException,
320                            com.liferay.portal.kernel.exception.SystemException {
321                    return _ddmStructureLocalService.copyStructure(userId, structureId,
322                            nameMap, descriptionMap, serviceContext);
323            }
324    
325            public void deleteStructure(
326                    com.liferay.portlet.dynamicdatamapping.model.DDMStructure structure)
327                    throws com.liferay.portal.kernel.exception.PortalException,
328                            com.liferay.portal.kernel.exception.SystemException {
329                    _ddmStructureLocalService.deleteStructure(structure);
330            }
331    
332            public void deleteStructure(long structureId)
333                    throws com.liferay.portal.kernel.exception.PortalException,
334                            com.liferay.portal.kernel.exception.SystemException {
335                    _ddmStructureLocalService.deleteStructure(structureId);
336            }
337    
338            public void deleteStructure(long groupId, java.lang.String structureKey)
339                    throws com.liferay.portal.kernel.exception.PortalException,
340                            com.liferay.portal.kernel.exception.SystemException {
341                    _ddmStructureLocalService.deleteStructure(groupId, structureKey);
342            }
343    
344            public void deleteStructures(long groupId)
345                    throws com.liferay.portal.kernel.exception.PortalException,
346                            com.liferay.portal.kernel.exception.SystemException {
347                    _ddmStructureLocalService.deleteStructures(groupId);
348            }
349    
350            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
351                    long structureId)
352                    throws com.liferay.portal.kernel.exception.SystemException {
353                    return _ddmStructureLocalService.fetchStructure(structureId);
354            }
355    
356            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure fetchStructure(
357                    long groupId, java.lang.String structureKey)
358                    throws com.liferay.portal.kernel.exception.SystemException {
359                    return _ddmStructureLocalService.fetchStructure(groupId, structureKey);
360            }
361    
362            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
363                    long classNameId)
364                    throws com.liferay.portal.kernel.exception.SystemException {
365                    return _ddmStructureLocalService.getClassStructures(classNameId);
366            }
367    
368            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
369                    long classNameId, int start, int end)
370                    throws com.liferay.portal.kernel.exception.SystemException {
371                    return _ddmStructureLocalService.getClassStructures(classNameId, start,
372                            end);
373            }
374    
375            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getClassStructures(
376                    long classNameId,
377                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
378                    throws com.liferay.portal.kernel.exception.SystemException {
379                    return _ddmStructureLocalService.getClassStructures(classNameId,
380                            orderByComparator);
381            }
382    
383            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getDLFileEntryTypeStructures(
384                    long dlFileEntryTypeId)
385                    throws com.liferay.portal.kernel.exception.SystemException {
386                    return _ddmStructureLocalService.getDLFileEntryTypeStructures(dlFileEntryTypeId);
387            }
388    
389            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
390                    long structureId)
391                    throws com.liferay.portal.kernel.exception.PortalException,
392                            com.liferay.portal.kernel.exception.SystemException {
393                    return _ddmStructureLocalService.getStructure(structureId);
394            }
395    
396            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure getStructure(
397                    long groupId, java.lang.String structureKey)
398                    throws com.liferay.portal.kernel.exception.PortalException,
399                            com.liferay.portal.kernel.exception.SystemException {
400                    return _ddmStructureLocalService.getStructure(groupId, structureKey);
401            }
402    
403            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructure(
404                    long groupId, java.lang.String name, java.lang.String description)
405                    throws com.liferay.portal.kernel.exception.SystemException {
406                    return _ddmStructureLocalService.getStructure(groupId, name, description);
407            }
408    
409            /**
410            * @deprecated {@link #getStructures}
411            */
412            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries()
413                    throws com.liferay.portal.kernel.exception.SystemException {
414                    return _ddmStructureLocalService.getStructureEntries();
415            }
416    
417            /**
418            * @deprecated {@link #getStructures(long)}
419            */
420            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
421                    long groupId)
422                    throws com.liferay.portal.kernel.exception.SystemException {
423                    return _ddmStructureLocalService.getStructureEntries(groupId);
424            }
425    
426            /**
427            * @deprecated {@link #getStructures(long, int, int)}
428            */
429            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructureEntries(
430                    long groupId, int start, int end)
431                    throws com.liferay.portal.kernel.exception.SystemException {
432                    return _ddmStructureLocalService.getStructureEntries(groupId, start, end);
433            }
434    
435            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures()
436                    throws com.liferay.portal.kernel.exception.SystemException {
437                    return _ddmStructureLocalService.getStructures();
438            }
439    
440            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
441                    long groupId)
442                    throws com.liferay.portal.kernel.exception.SystemException {
443                    return _ddmStructureLocalService.getStructures(groupId);
444            }
445    
446            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> getStructures(
447                    long groupId, int start, int end)
448                    throws com.liferay.portal.kernel.exception.SystemException {
449                    return _ddmStructureLocalService.getStructures(groupId, start, end);
450            }
451    
452            public int getStructuresCount(long groupId)
453                    throws com.liferay.portal.kernel.exception.SystemException {
454                    return _ddmStructureLocalService.getStructuresCount(groupId);
455            }
456    
457            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
458                    long companyId, long[] groupIds, long[] classNameIds,
459                    java.lang.String keywords, int start, int end,
460                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
461                    throws com.liferay.portal.kernel.exception.SystemException {
462                    return _ddmStructureLocalService.search(companyId, groupIds,
463                            classNameIds, keywords, start, end, orderByComparator);
464            }
465    
466            public java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> search(
467                    long companyId, long[] groupIds, long[] classNameIds,
468                    java.lang.String name, java.lang.String description,
469                    java.lang.String storageType, int type, boolean andOperator, int start,
470                    int end,
471                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
472                    throws com.liferay.portal.kernel.exception.SystemException {
473                    return _ddmStructureLocalService.search(companyId, groupIds,
474                            classNameIds, name, description, storageType, type, andOperator,
475                            start, end, orderByComparator);
476            }
477    
478            public int searchCount(long companyId, long[] groupIds,
479                    long[] classNameIds, java.lang.String keywords)
480                    throws com.liferay.portal.kernel.exception.SystemException {
481                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
482                            classNameIds, keywords);
483            }
484    
485            public int searchCount(long companyId, long[] groupIds,
486                    long[] classNameIds, java.lang.String name,
487                    java.lang.String description, java.lang.String storageType, int type,
488                    boolean andOperator)
489                    throws com.liferay.portal.kernel.exception.SystemException {
490                    return _ddmStructureLocalService.searchCount(companyId, groupIds,
491                            classNameIds, name, description, storageType, type, andOperator);
492            }
493    
494            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
495                    long structureId,
496                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
497                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
498                    java.lang.String xsd,
499                    com.liferay.portal.service.ServiceContext serviceContext)
500                    throws com.liferay.portal.kernel.exception.PortalException,
501                            com.liferay.portal.kernel.exception.SystemException {
502                    return _ddmStructureLocalService.updateStructure(structureId, nameMap,
503                            descriptionMap, xsd, serviceContext);
504            }
505    
506            public com.liferay.portlet.dynamicdatamapping.model.DDMStructure updateStructure(
507                    long groupId, java.lang.String structureKey,
508                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
509                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
510                    java.lang.String xsd,
511                    com.liferay.portal.service.ServiceContext serviceContext)
512                    throws com.liferay.portal.kernel.exception.PortalException,
513                            com.liferay.portal.kernel.exception.SystemException {
514                    return _ddmStructureLocalService.updateStructure(groupId, structureKey,
515                            nameMap, descriptionMap, xsd, serviceContext);
516            }
517    
518            /**
519             * @deprecated Renamed to {@link #getWrappedService}
520             */
521            public DDMStructureLocalService getWrappedDDMStructureLocalService() {
522                    return _ddmStructureLocalService;
523            }
524    
525            /**
526             * @deprecated Renamed to {@link #setWrappedService}
527             */
528            public void setWrappedDDMStructureLocalService(
529                    DDMStructureLocalService ddmStructureLocalService) {
530                    _ddmStructureLocalService = ddmStructureLocalService;
531            }
532    
533            public DDMStructureLocalService getWrappedService() {
534                    return _ddmStructureLocalService;
535            }
536    
537            public void setWrappedService(
538                    DDMStructureLocalService ddmStructureLocalService) {
539                    _ddmStructureLocalService = ddmStructureLocalService;
540            }
541    
542            private DDMStructureLocalService _ddmStructureLocalService;
543    }