001
014
015 package com.liferay.portlet.dynamicdatamapping.service.http;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.log.Log;
020 import com.liferay.portal.kernel.log.LogFactoryUtil;
021 import com.liferay.portal.kernel.util.LocalizationUtil;
022
023 import com.liferay.portlet.dynamicdatamapping.service.DDMStructureServiceUtil;
024
025 import java.rmi.RemoteException;
026
027 import java.util.Locale;
028 import java.util.Map;
029
030
070 @ProviderType
071 public class DDMStructureServiceSoap {
072 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
073 long userId, long groupId, long classNameId,
074 java.lang.String[] nameMapLanguageIds,
075 java.lang.String[] nameMapValues,
076 java.lang.String[] descriptionMapLanguageIds,
077 java.lang.String[] descriptionMapValues,
078 com.liferay.portlet.dynamicdatamapping.model.DDMForm ddmForm,
079 com.liferay.portal.service.ServiceContext serviceContext)
080 throws RemoteException {
081 try {
082 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
083 nameMapValues);
084 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
085 descriptionMapValues);
086
087 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
088 DDMStructureServiceUtil.addStructure(userId, groupId,
089 classNameId, nameMap, descriptionMap, ddmForm,
090 serviceContext);
091
092 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
093 }
094 catch (Exception e) {
095 _log.error(e, e);
096
097 throw new RemoteException(e.getMessage());
098 }
099 }
100
101
125 @Deprecated
126 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
127 long userId, long groupId, long classNameId,
128 java.lang.String[] nameMapLanguageIds,
129 java.lang.String[] nameMapValues,
130 java.lang.String[] descriptionMapLanguageIds,
131 java.lang.String[] descriptionMapValues, java.lang.String xsd,
132 com.liferay.portal.service.ServiceContext serviceContext)
133 throws RemoteException {
134 try {
135 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
136 nameMapValues);
137 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
138 descriptionMapValues);
139
140 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
141 DDMStructureServiceUtil.addStructure(userId, groupId,
142 classNameId, nameMap, descriptionMap, xsd, serviceContext);
143
144 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
145 }
146 catch (Exception e) {
147 _log.error(e, e);
148
149 throw new RemoteException(e.getMessage());
150 }
151 }
152
153 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
154 long groupId, long parentStructureId, long classNameId,
155 java.lang.String structureKey, java.lang.String[] nameMapLanguageIds,
156 java.lang.String[] nameMapValues,
157 java.lang.String[] descriptionMapLanguageIds,
158 java.lang.String[] descriptionMapValues,
159 com.liferay.portlet.dynamicdatamapping.model.DDMForm ddmForm,
160 java.lang.String storageType, int type,
161 com.liferay.portal.service.ServiceContext serviceContext)
162 throws RemoteException {
163 try {
164 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
165 nameMapValues);
166 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
167 descriptionMapValues);
168
169 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
170 DDMStructureServiceUtil.addStructure(groupId,
171 parentStructureId, classNameId, structureKey, nameMap,
172 descriptionMap, ddmForm, storageType, type, serviceContext);
173
174 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
175 }
176 catch (Exception e) {
177 _log.error(e, e);
178
179 throw new RemoteException(e.getMessage());
180 }
181 }
182
183
214 @Deprecated
215 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
216 long groupId, long parentStructureId, long classNameId,
217 java.lang.String structureKey, java.lang.String[] nameMapLanguageIds,
218 java.lang.String[] nameMapValues,
219 java.lang.String[] descriptionMapLanguageIds,
220 java.lang.String[] descriptionMapValues, java.lang.String xsd,
221 java.lang.String storageType, int type,
222 com.liferay.portal.service.ServiceContext serviceContext)
223 throws RemoteException {
224 try {
225 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
226 nameMapValues);
227 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
228 descriptionMapValues);
229
230 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
231 DDMStructureServiceUtil.addStructure(groupId,
232 parentStructureId, classNameId, structureKey, nameMap,
233 descriptionMap, xsd, storageType, type, serviceContext);
234
235 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
236 }
237 catch (Exception e) {
238 _log.error(e, e);
239
240 throw new RemoteException(e.getMessage());
241 }
242 }
243
244 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
245 long userId, long groupId, java.lang.String parentStructureKey,
246 long classNameId, java.lang.String structureKey,
247 java.lang.String[] nameMapLanguageIds,
248 java.lang.String[] nameMapValues,
249 java.lang.String[] descriptionMapLanguageIds,
250 java.lang.String[] descriptionMapValues,
251 com.liferay.portlet.dynamicdatamapping.model.DDMForm ddmForm,
252 java.lang.String storageType, int type,
253 com.liferay.portal.service.ServiceContext serviceContext)
254 throws RemoteException {
255 try {
256 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
257 nameMapValues);
258 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
259 descriptionMapValues);
260
261 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
262 DDMStructureServiceUtil.addStructure(userId, groupId,
263 parentStructureKey, classNameId, structureKey, nameMap,
264 descriptionMap, ddmForm, storageType, type, serviceContext);
265
266 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
267 }
268 catch (Exception e) {
269 _log.error(e, e);
270
271 throw new RemoteException(e.getMessage());
272 }
273 }
274
275
310 @Deprecated
311 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap addStructure(
312 long userId, long groupId, java.lang.String parentStructureKey,
313 long classNameId, java.lang.String structureKey,
314 java.lang.String[] nameMapLanguageIds,
315 java.lang.String[] nameMapValues,
316 java.lang.String[] descriptionMapLanguageIds,
317 java.lang.String[] descriptionMapValues, java.lang.String xsd,
318 java.lang.String storageType, int type,
319 com.liferay.portal.service.ServiceContext serviceContext)
320 throws RemoteException {
321 try {
322 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
323 nameMapValues);
324 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
325 descriptionMapValues);
326
327 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
328 DDMStructureServiceUtil.addStructure(userId, groupId,
329 parentStructureKey, classNameId, structureKey, nameMap,
330 descriptionMap, xsd, storageType, type, serviceContext);
331
332 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
333 }
334 catch (Exception e) {
335 _log.error(e, e);
336
337 throw new RemoteException(e.getMessage());
338 }
339 }
340
341
357 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap copyStructure(
358 long structureId, java.lang.String[] nameMapLanguageIds,
359 java.lang.String[] nameMapValues,
360 java.lang.String[] descriptionMapLanguageIds,
361 java.lang.String[] descriptionMapValues,
362 com.liferay.portal.service.ServiceContext serviceContext)
363 throws RemoteException {
364 try {
365 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
366 nameMapValues);
367 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
368 descriptionMapValues);
369
370 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
371 DDMStructureServiceUtil.copyStructure(structureId, nameMap,
372 descriptionMap, serviceContext);
373
374 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
375 }
376 catch (Exception e) {
377 _log.error(e, e);
378
379 throw new RemoteException(e.getMessage());
380 }
381 }
382
383 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap copyStructure(
384 long structureId,
385 com.liferay.portal.service.ServiceContext serviceContext)
386 throws RemoteException {
387 try {
388 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
389 DDMStructureServiceUtil.copyStructure(structureId,
390 serviceContext);
391
392 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
393 }
394 catch (Exception e) {
395 _log.error(e, e);
396
397 throw new RemoteException(e.getMessage());
398 }
399 }
400
401
413 public static void deleteStructure(long structureId)
414 throws RemoteException {
415 try {
416 DDMStructureServiceUtil.deleteStructure(structureId);
417 }
418 catch (Exception e) {
419 _log.error(e, e);
420
421 throw new RemoteException(e.getMessage());
422 }
423 }
424
425
438 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap fetchStructure(
439 long groupId, long classNameId, java.lang.String structureKey)
440 throws RemoteException {
441 try {
442 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
443 DDMStructureServiceUtil.fetchStructure(groupId, classNameId,
444 structureKey);
445
446 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
447 }
448 catch (Exception e) {
449 _log.error(e, e);
450
451 throw new RemoteException(e.getMessage());
452 }
453 }
454
455 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] getJournalFolderStructures(
456 long[] groupIds, long journalFolderId, int restrictionType)
457 throws RemoteException {
458 try {
459 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
460 DDMStructureServiceUtil.getJournalFolderStructures(groupIds,
461 journalFolderId, restrictionType);
462
463 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
464 }
465 catch (Exception e) {
466 _log.error(e, e);
467
468 throw new RemoteException(e.getMessage());
469 }
470 }
471
472
480 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap getStructure(
481 long structureId) throws RemoteException {
482 try {
483 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
484 DDMStructureServiceUtil.getStructure(structureId);
485
486 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
487 }
488 catch (Exception e) {
489 _log.error(e, e);
490
491 throw new RemoteException(e.getMessage());
492 }
493 }
494
495
507 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap getStructure(
508 long groupId, long classNameId, java.lang.String structureKey)
509 throws RemoteException {
510 try {
511 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
512 DDMStructureServiceUtil.getStructure(groupId, classNameId,
513 structureKey);
514
515 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
516 }
517 catch (Exception e) {
518 _log.error(e, e);
519
520 throw new RemoteException(e.getMessage());
521 }
522 }
523
524
547 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap getStructure(
548 long groupId, long classNameId, java.lang.String structureKey,
549 boolean includeAncestorStructures) throws RemoteException {
550 try {
551 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
552 DDMStructureServiceUtil.getStructure(groupId, classNameId,
553 structureKey, includeAncestorStructures);
554
555 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
556 }
557 catch (Exception e) {
558 _log.error(e, e);
559
560 throw new RemoteException(e.getMessage());
561 }
562 }
563
564
571 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] getStructures(
572 long groupId) throws RemoteException {
573 try {
574 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
575 DDMStructureServiceUtil.getStructures(groupId);
576
577 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
578 }
579 catch (Exception e) {
580 _log.error(e, e);
581
582 throw new RemoteException(e.getMessage());
583 }
584 }
585
586
593 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] getStructures(
594 long[] groupIds) throws RemoteException {
595 try {
596 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
597 DDMStructureServiceUtil.getStructures(groupIds);
598
599 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
600 }
601 catch (Exception e) {
602 _log.error(e, e);
603
604 throw new RemoteException(e.getMessage());
605 }
606 }
607
608
618 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] getStructures(
619 long[] groupIds, long classNameId) throws RemoteException {
620 try {
621 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
622 DDMStructureServiceUtil.getStructures(groupIds, classNameId);
623
624 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
625 }
626 catch (Exception e) {
627 _log.error(e, e);
628
629 throw new RemoteException(e.getMessage());
630 }
631 }
632
633 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] getStructures(
634 long[] groupIds, long classNameId, int start, int end)
635 throws RemoteException {
636 try {
637 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
638 DDMStructureServiceUtil.getStructures(groupIds, classNameId,
639 start, end);
640
641 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
642 }
643 catch (Exception e) {
644 _log.error(e, e);
645
646 throw new RemoteException(e.getMessage());
647 }
648 }
649
650
678 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] search(
679 long companyId, long[] groupIds, long[] classNameIds,
680 java.lang.String keywords, int start, int end,
681 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> orderByComparator)
682 throws RemoteException {
683 try {
684 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
685 DDMStructureServiceUtil.search(companyId, groupIds,
686 classNameIds, keywords, start, end, orderByComparator);
687
688 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
689 }
690 catch (Exception e) {
691 _log.error(e, e);
692
693 throw new RemoteException(e.getMessage());
694 }
695 }
696
697
731 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap[] search(
732 long companyId, long[] groupIds, long[] classNameIds,
733 java.lang.String name, java.lang.String description,
734 java.lang.String storageType, int type, boolean andOperator, int start,
735 int end,
736 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> orderByComparator)
737 throws RemoteException {
738 try {
739 java.util.List<com.liferay.portlet.dynamicdatamapping.model.DDMStructure> returnValue =
740 DDMStructureServiceUtil.search(companyId, groupIds,
741 classNameIds, name, description, storageType, type,
742 andOperator, start, end, orderByComparator);
743
744 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModels(returnValue);
745 }
746 catch (Exception e) {
747 _log.error(e, e);
748
749 throw new RemoteException(e.getMessage());
750 }
751 }
752
753
765 public static int searchCount(long companyId, long[] groupIds,
766 long[] classNameIds, java.lang.String keywords)
767 throws RemoteException {
768 try {
769 int returnValue = DDMStructureServiceUtil.searchCount(companyId,
770 groupIds, classNameIds, keywords);
771
772 return returnValue;
773 }
774 catch (Exception e) {
775 _log.error(e, e);
776
777 throw new RemoteException(e.getMessage());
778 }
779 }
780
781
800 public static int searchCount(long companyId, long[] groupIds,
801 long[] classNameIds, java.lang.String name,
802 java.lang.String description, java.lang.String storageType, int type,
803 boolean andOperator) throws RemoteException {
804 try {
805 int returnValue = DDMStructureServiceUtil.searchCount(companyId,
806 groupIds, classNameIds, name, description, storageType,
807 type, andOperator);
808
809 return returnValue;
810 }
811 catch (Exception e) {
812 _log.error(e, e);
813
814 throw new RemoteException(e.getMessage());
815 }
816 }
817
818 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap updateStructure(
819 long groupId, long parentStructureId, long classNameId,
820 java.lang.String structureKey, java.lang.String[] nameMapLanguageIds,
821 java.lang.String[] nameMapValues,
822 java.lang.String[] descriptionMapLanguageIds,
823 java.lang.String[] descriptionMapValues,
824 com.liferay.portlet.dynamicdatamapping.model.DDMForm ddmForm,
825 com.liferay.portal.service.ServiceContext serviceContext)
826 throws RemoteException {
827 try {
828 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
829 nameMapValues);
830 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
831 descriptionMapValues);
832
833 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
834 DDMStructureServiceUtil.updateStructure(groupId,
835 parentStructureId, classNameId, structureKey, nameMap,
836 descriptionMap, ddmForm, serviceContext);
837
838 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
839 }
840 catch (Exception e) {
841 _log.error(e, e);
842
843 throw new RemoteException(e.getMessage());
844 }
845 }
846
847
869 @Deprecated
870 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap updateStructure(
871 long groupId, long parentStructureId, long classNameId,
872 java.lang.String structureKey, java.lang.String[] nameMapLanguageIds,
873 java.lang.String[] nameMapValues,
874 java.lang.String[] descriptionMapLanguageIds,
875 java.lang.String[] descriptionMapValues, java.lang.String definition,
876 com.liferay.portal.service.ServiceContext serviceContext)
877 throws RemoteException {
878 try {
879 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
880 nameMapValues);
881 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
882 descriptionMapValues);
883
884 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
885 DDMStructureServiceUtil.updateStructure(groupId,
886 parentStructureId, classNameId, structureKey, nameMap,
887 descriptionMap, definition, serviceContext);
888
889 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
890 }
891 catch (Exception e) {
892 _log.error(e, e);
893
894 throw new RemoteException(e.getMessage());
895 }
896 }
897
898 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap updateStructure(
899 long structureId, long parentStructureId,
900 java.lang.String[] nameMapLanguageIds,
901 java.lang.String[] nameMapValues,
902 java.lang.String[] descriptionMapLanguageIds,
903 java.lang.String[] descriptionMapValues,
904 com.liferay.portlet.dynamicdatamapping.model.DDMForm ddmForm,
905 com.liferay.portal.service.ServiceContext serviceContext)
906 throws RemoteException {
907 try {
908 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
909 nameMapValues);
910 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
911 descriptionMapValues);
912
913 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
914 DDMStructureServiceUtil.updateStructure(structureId,
915 parentStructureId, nameMap, descriptionMap, ddmForm,
916 serviceContext);
917
918 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
919 }
920 catch (Exception e) {
921 _log.error(e, e);
922
923 throw new RemoteException(e.getMessage());
924 }
925 }
926
927
945 @Deprecated
946 public static com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap updateStructure(
947 long structureId, long parentStructureId,
948 java.lang.String[] nameMapLanguageIds,
949 java.lang.String[] nameMapValues,
950 java.lang.String[] descriptionMapLanguageIds,
951 java.lang.String[] descriptionMapValues, java.lang.String definition,
952 com.liferay.portal.service.ServiceContext serviceContext)
953 throws RemoteException {
954 try {
955 Map<Locale, String> nameMap = LocalizationUtil.getLocalizationMap(nameMapLanguageIds,
956 nameMapValues);
957 Map<Locale, String> descriptionMap = LocalizationUtil.getLocalizationMap(descriptionMapLanguageIds,
958 descriptionMapValues);
959
960 com.liferay.portlet.dynamicdatamapping.model.DDMStructure returnValue =
961 DDMStructureServiceUtil.updateStructure(structureId,
962 parentStructureId, nameMap, descriptionMap, definition,
963 serviceContext);
964
965 return com.liferay.portlet.dynamicdatamapping.model.DDMStructureSoap.toSoapModel(returnValue);
966 }
967 catch (Exception e) {
968 _log.error(e, e);
969
970 throw new RemoteException(e.getMessage());
971 }
972 }
973
974 private static Log _log = LogFactoryUtil.getLog(DDMStructureServiceSoap.class);
975 }