001    /**
002     * Copyright (c) 2000-present 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.exportimport.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.util.Validator;
020    import com.liferay.portal.model.ModelWrapper;
021    
022    import java.util.Date;
023    import java.util.HashMap;
024    import java.util.Map;
025    
026    /**
027     * <p>
028     * This class is a wrapper for {@link ExportImportConfiguration}.
029     * </p>
030     *
031     * @author Brian Wing Shun Chan
032     * @see ExportImportConfiguration
033     * @generated
034     */
035    @ProviderType
036    public class ExportImportConfigurationWrapper
037            implements ExportImportConfiguration,
038                    ModelWrapper<ExportImportConfiguration> {
039            public ExportImportConfigurationWrapper(
040                    ExportImportConfiguration exportImportConfiguration) {
041                    _exportImportConfiguration = exportImportConfiguration;
042            }
043    
044            @Override
045            public Class<?> getModelClass() {
046                    return ExportImportConfiguration.class;
047            }
048    
049            @Override
050            public String getModelClassName() {
051                    return ExportImportConfiguration.class.getName();
052            }
053    
054            @Override
055            public Map<String, Object> getModelAttributes() {
056                    Map<String, Object> attributes = new HashMap<String, Object>();
057    
058                    attributes.put("mvccVersion", getMvccVersion());
059                    attributes.put("exportImportConfigurationId",
060                            getExportImportConfigurationId());
061                    attributes.put("groupId", getGroupId());
062                    attributes.put("companyId", getCompanyId());
063                    attributes.put("userId", getUserId());
064                    attributes.put("userName", getUserName());
065                    attributes.put("createDate", getCreateDate());
066                    attributes.put("modifiedDate", getModifiedDate());
067                    attributes.put("name", getName());
068                    attributes.put("description", getDescription());
069                    attributes.put("type", getType());
070                    attributes.put("settings", getSettings());
071                    attributes.put("status", getStatus());
072                    attributes.put("statusByUserId", getStatusByUserId());
073                    attributes.put("statusByUserName", getStatusByUserName());
074                    attributes.put("statusDate", getStatusDate());
075    
076                    return attributes;
077            }
078    
079            @Override
080            public void setModelAttributes(Map<String, Object> attributes) {
081                    Long mvccVersion = (Long)attributes.get("mvccVersion");
082    
083                    if (mvccVersion != null) {
084                            setMvccVersion(mvccVersion);
085                    }
086    
087                    Long exportImportConfigurationId = (Long)attributes.get(
088                                    "exportImportConfigurationId");
089    
090                    if (exportImportConfigurationId != null) {
091                            setExportImportConfigurationId(exportImportConfigurationId);
092                    }
093    
094                    Long groupId = (Long)attributes.get("groupId");
095    
096                    if (groupId != null) {
097                            setGroupId(groupId);
098                    }
099    
100                    Long companyId = (Long)attributes.get("companyId");
101    
102                    if (companyId != null) {
103                            setCompanyId(companyId);
104                    }
105    
106                    Long userId = (Long)attributes.get("userId");
107    
108                    if (userId != null) {
109                            setUserId(userId);
110                    }
111    
112                    String userName = (String)attributes.get("userName");
113    
114                    if (userName != null) {
115                            setUserName(userName);
116                    }
117    
118                    Date createDate = (Date)attributes.get("createDate");
119    
120                    if (createDate != null) {
121                            setCreateDate(createDate);
122                    }
123    
124                    Date modifiedDate = (Date)attributes.get("modifiedDate");
125    
126                    if (modifiedDate != null) {
127                            setModifiedDate(modifiedDate);
128                    }
129    
130                    String name = (String)attributes.get("name");
131    
132                    if (name != null) {
133                            setName(name);
134                    }
135    
136                    String description = (String)attributes.get("description");
137    
138                    if (description != null) {
139                            setDescription(description);
140                    }
141    
142                    Integer type = (Integer)attributes.get("type");
143    
144                    if (type != null) {
145                            setType(type);
146                    }
147    
148                    String settings = (String)attributes.get("settings");
149    
150                    if (settings != null) {
151                            setSettings(settings);
152                    }
153    
154                    Integer status = (Integer)attributes.get("status");
155    
156                    if (status != null) {
157                            setStatus(status);
158                    }
159    
160                    Long statusByUserId = (Long)attributes.get("statusByUserId");
161    
162                    if (statusByUserId != null) {
163                            setStatusByUserId(statusByUserId);
164                    }
165    
166                    String statusByUserName = (String)attributes.get("statusByUserName");
167    
168                    if (statusByUserName != null) {
169                            setStatusByUserName(statusByUserName);
170                    }
171    
172                    Date statusDate = (Date)attributes.get("statusDate");
173    
174                    if (statusDate != null) {
175                            setStatusDate(statusDate);
176                    }
177            }
178    
179            @Override
180            public java.lang.Object clone() {
181                    return new ExportImportConfigurationWrapper((ExportImportConfiguration)_exportImportConfiguration.clone());
182            }
183    
184            @Override
185            public int compareTo(
186                    com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration) {
187                    return _exportImportConfiguration.compareTo(exportImportConfiguration);
188            }
189    
190            /**
191            * @deprecated As of 6.1.0, replaced by {@link #isApproved()}
192            */
193            @Deprecated
194            @Override
195            public boolean getApproved() {
196                    return _exportImportConfiguration.getApproved();
197            }
198    
199            /**
200            * Returns the company ID of this export import configuration.
201            *
202            * @return the company ID of this export import configuration
203            */
204            @Override
205            public long getCompanyId() {
206                    return _exportImportConfiguration.getCompanyId();
207            }
208    
209            /**
210            * Returns the create date of this export import configuration.
211            *
212            * @return the create date of this export import configuration
213            */
214            @Override
215            public Date getCreateDate() {
216                    return _exportImportConfiguration.getCreateDate();
217            }
218    
219            /**
220            * Returns the description of this export import configuration.
221            *
222            * @return the description of this export import configuration
223            */
224            @Override
225            public java.lang.String getDescription() {
226                    return _exportImportConfiguration.getDescription();
227            }
228    
229            @Override
230            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
231                    return _exportImportConfiguration.getExpandoBridge();
232            }
233    
234            /**
235            * Returns the export import configuration ID of this export import configuration.
236            *
237            * @return the export import configuration ID of this export import configuration
238            */
239            @Override
240            public long getExportImportConfigurationId() {
241                    return _exportImportConfiguration.getExportImportConfigurationId();
242            }
243    
244            /**
245            * Returns the group ID of this export import configuration.
246            *
247            * @return the group ID of this export import configuration
248            */
249            @Override
250            public long getGroupId() {
251                    return _exportImportConfiguration.getGroupId();
252            }
253    
254            /**
255            * Returns the modified date of this export import configuration.
256            *
257            * @return the modified date of this export import configuration
258            */
259            @Override
260            public Date getModifiedDate() {
261                    return _exportImportConfiguration.getModifiedDate();
262            }
263    
264            /**
265            * Returns the mvcc version of this export import configuration.
266            *
267            * @return the mvcc version of this export import configuration
268            */
269            @Override
270            public long getMvccVersion() {
271                    return _exportImportConfiguration.getMvccVersion();
272            }
273    
274            /**
275            * Returns the name of this export import configuration.
276            *
277            * @return the name of this export import configuration
278            */
279            @Override
280            public java.lang.String getName() {
281                    return _exportImportConfiguration.getName();
282            }
283    
284            /**
285            * Returns the primary key of this export import configuration.
286            *
287            * @return the primary key of this export import configuration
288            */
289            @Override
290            public long getPrimaryKey() {
291                    return _exportImportConfiguration.getPrimaryKey();
292            }
293    
294            @Override
295            public java.io.Serializable getPrimaryKeyObj() {
296                    return _exportImportConfiguration.getPrimaryKeyObj();
297            }
298    
299            /**
300            * Returns the settings of this export import configuration.
301            *
302            * @return the settings of this export import configuration
303            */
304            @Override
305            public java.lang.String getSettings() {
306                    return _exportImportConfiguration.getSettings();
307            }
308    
309            @Override
310            public Map<java.lang.String, java.io.Serializable> getSettingsMap() {
311                    return _exportImportConfiguration.getSettingsMap();
312            }
313    
314            /**
315            * Returns the status of this export import configuration.
316            *
317            * @return the status of this export import configuration
318            */
319            @Override
320            public int getStatus() {
321                    return _exportImportConfiguration.getStatus();
322            }
323    
324            /**
325            * Returns the status by user ID of this export import configuration.
326            *
327            * @return the status by user ID of this export import configuration
328            */
329            @Override
330            public long getStatusByUserId() {
331                    return _exportImportConfiguration.getStatusByUserId();
332            }
333    
334            /**
335            * Returns the status by user name of this export import configuration.
336            *
337            * @return the status by user name of this export import configuration
338            */
339            @Override
340            public java.lang.String getStatusByUserName() {
341                    return _exportImportConfiguration.getStatusByUserName();
342            }
343    
344            /**
345            * Returns the status by user uuid of this export import configuration.
346            *
347            * @return the status by user uuid of this export import configuration
348            */
349            @Override
350            public java.lang.String getStatusByUserUuid() {
351                    return _exportImportConfiguration.getStatusByUserUuid();
352            }
353    
354            /**
355            * Returns the status date of this export import configuration.
356            *
357            * @return the status date of this export import configuration
358            */
359            @Override
360            public Date getStatusDate() {
361                    return _exportImportConfiguration.getStatusDate();
362            }
363    
364            /**
365            * Returns the trash entry created when this export import configuration was moved to the Recycle Bin. The trash entry may belong to one of the ancestors of this export import configuration.
366            *
367            * @return the trash entry created when this export import configuration was moved to the Recycle Bin
368            */
369            @Override
370            public com.liferay.portlet.trash.model.TrashEntry getTrashEntry()
371                    throws com.liferay.portal.kernel.exception.PortalException {
372                    return _exportImportConfiguration.getTrashEntry();
373            }
374    
375            /**
376            * Returns the class primary key of the trash entry for this export import configuration.
377            *
378            * @return the class primary key of the trash entry for this export import configuration
379            */
380            @Override
381            public long getTrashEntryClassPK() {
382                    return _exportImportConfiguration.getTrashEntryClassPK();
383            }
384    
385            /**
386            * Returns the trash handler for this export import configuration.
387            *
388            * @return the trash handler for this export import configuration
389            */
390            @Override
391            public com.liferay.portal.kernel.trash.TrashHandler getTrashHandler() {
392                    return _exportImportConfiguration.getTrashHandler();
393            }
394    
395            /**
396            * Returns the type of this export import configuration.
397            *
398            * @return the type of this export import configuration
399            */
400            @Override
401            public int getType() {
402                    return _exportImportConfiguration.getType();
403            }
404    
405            /**
406            * Returns the user ID of this export import configuration.
407            *
408            * @return the user ID of this export import configuration
409            */
410            @Override
411            public long getUserId() {
412                    return _exportImportConfiguration.getUserId();
413            }
414    
415            /**
416            * Returns the user name of this export import configuration.
417            *
418            * @return the user name of this export import configuration
419            */
420            @Override
421            public java.lang.String getUserName() {
422                    return _exportImportConfiguration.getUserName();
423            }
424    
425            /**
426            * Returns the user uuid of this export import configuration.
427            *
428            * @return the user uuid of this export import configuration
429            */
430            @Override
431            public java.lang.String getUserUuid() {
432                    return _exportImportConfiguration.getUserUuid();
433            }
434    
435            @Override
436            public int hashCode() {
437                    return _exportImportConfiguration.hashCode();
438            }
439    
440            /**
441            * Returns <code>true</code> if this export import configuration is approved.
442            *
443            * @return <code>true</code> if this export import configuration is approved; <code>false</code> otherwise
444            */
445            @Override
446            public boolean isApproved() {
447                    return _exportImportConfiguration.isApproved();
448            }
449    
450            @Override
451            public boolean isCachedModel() {
452                    return _exportImportConfiguration.isCachedModel();
453            }
454    
455            /**
456            * Returns <code>true</code> if this export import configuration is denied.
457            *
458            * @return <code>true</code> if this export import configuration is denied; <code>false</code> otherwise
459            */
460            @Override
461            public boolean isDenied() {
462                    return _exportImportConfiguration.isDenied();
463            }
464    
465            /**
466            * Returns <code>true</code> if this export import configuration is a draft.
467            *
468            * @return <code>true</code> if this export import configuration is a draft; <code>false</code> otherwise
469            */
470            @Override
471            public boolean isDraft() {
472                    return _exportImportConfiguration.isDraft();
473            }
474    
475            @Override
476            public boolean isEscapedModel() {
477                    return _exportImportConfiguration.isEscapedModel();
478            }
479    
480            /**
481            * Returns <code>true</code> if this export import configuration is expired.
482            *
483            * @return <code>true</code> if this export import configuration is expired; <code>false</code> otherwise
484            */
485            @Override
486            public boolean isExpired() {
487                    return _exportImportConfiguration.isExpired();
488            }
489    
490            /**
491            * Returns <code>true</code> if this export import configuration is in the Recycle Bin.
492            *
493            * @return <code>true</code> if this export import configuration is in the Recycle Bin; <code>false</code> otherwise
494            */
495            @Override
496            public boolean isInTrash() {
497                    return _exportImportConfiguration.isInTrash();
498            }
499    
500            /**
501            * Returns <code>true</code> if the parent of this export import configuration is in the Recycle Bin.
502            *
503            * @return <code>true</code> if the parent of this export import configuration is in the Recycle Bin; <code>false</code> otherwise
504            */
505            @Override
506            public boolean isInTrashContainer() {
507                    return _exportImportConfiguration.isInTrashContainer();
508            }
509    
510            @Override
511            public boolean isInTrashExplicitly() {
512                    return _exportImportConfiguration.isInTrashExplicitly();
513            }
514    
515            @Override
516            public boolean isInTrashImplicitly() {
517                    return _exportImportConfiguration.isInTrashImplicitly();
518            }
519    
520            /**
521            * Returns <code>true</code> if this export import configuration is inactive.
522            *
523            * @return <code>true</code> if this export import configuration is inactive; <code>false</code> otherwise
524            */
525            @Override
526            public boolean isInactive() {
527                    return _exportImportConfiguration.isInactive();
528            }
529    
530            /**
531            * Returns <code>true</code> if this export import configuration is incomplete.
532            *
533            * @return <code>true</code> if this export import configuration is incomplete; <code>false</code> otherwise
534            */
535            @Override
536            public boolean isIncomplete() {
537                    return _exportImportConfiguration.isIncomplete();
538            }
539    
540            @Override
541            public boolean isNew() {
542                    return _exportImportConfiguration.isNew();
543            }
544    
545            /**
546            * Returns <code>true</code> if this export import configuration is pending.
547            *
548            * @return <code>true</code> if this export import configuration is pending; <code>false</code> otherwise
549            */
550            @Override
551            public boolean isPending() {
552                    return _exportImportConfiguration.isPending();
553            }
554    
555            /**
556            * Returns <code>true</code> if this export import configuration is scheduled.
557            *
558            * @return <code>true</code> if this export import configuration is scheduled; <code>false</code> otherwise
559            */
560            @Override
561            public boolean isScheduled() {
562                    return _exportImportConfiguration.isScheduled();
563            }
564    
565            @Override
566            public void persist() {
567                    _exportImportConfiguration.persist();
568            }
569    
570            @Override
571            public void setCachedModel(boolean cachedModel) {
572                    _exportImportConfiguration.setCachedModel(cachedModel);
573            }
574    
575            /**
576            * Sets the company ID of this export import configuration.
577            *
578            * @param companyId the company ID of this export import configuration
579            */
580            @Override
581            public void setCompanyId(long companyId) {
582                    _exportImportConfiguration.setCompanyId(companyId);
583            }
584    
585            /**
586            * Sets the create date of this export import configuration.
587            *
588            * @param createDate the create date of this export import configuration
589            */
590            @Override
591            public void setCreateDate(Date createDate) {
592                    _exportImportConfiguration.setCreateDate(createDate);
593            }
594    
595            /**
596            * Sets the description of this export import configuration.
597            *
598            * @param description the description of this export import configuration
599            */
600            @Override
601            public void setDescription(java.lang.String description) {
602                    _exportImportConfiguration.setDescription(description);
603            }
604    
605            @Override
606            public void setExpandoBridgeAttributes(
607                    com.liferay.portal.model.BaseModel<?> baseModel) {
608                    _exportImportConfiguration.setExpandoBridgeAttributes(baseModel);
609            }
610    
611            @Override
612            public void setExpandoBridgeAttributes(
613                    com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
614                    _exportImportConfiguration.setExpandoBridgeAttributes(expandoBridge);
615            }
616    
617            @Override
618            public void setExpandoBridgeAttributes(
619                    com.liferay.portal.service.ServiceContext serviceContext) {
620                    _exportImportConfiguration.setExpandoBridgeAttributes(serviceContext);
621            }
622    
623            /**
624            * Sets the export import configuration ID of this export import configuration.
625            *
626            * @param exportImportConfigurationId the export import configuration ID of this export import configuration
627            */
628            @Override
629            public void setExportImportConfigurationId(long exportImportConfigurationId) {
630                    _exportImportConfiguration.setExportImportConfigurationId(exportImportConfigurationId);
631            }
632    
633            /**
634            * Sets the group ID of this export import configuration.
635            *
636            * @param groupId the group ID of this export import configuration
637            */
638            @Override
639            public void setGroupId(long groupId) {
640                    _exportImportConfiguration.setGroupId(groupId);
641            }
642    
643            /**
644            * Sets the modified date of this export import configuration.
645            *
646            * @param modifiedDate the modified date of this export import configuration
647            */
648            @Override
649            public void setModifiedDate(Date modifiedDate) {
650                    _exportImportConfiguration.setModifiedDate(modifiedDate);
651            }
652    
653            /**
654            * Sets the mvcc version of this export import configuration.
655            *
656            * @param mvccVersion the mvcc version of this export import configuration
657            */
658            @Override
659            public void setMvccVersion(long mvccVersion) {
660                    _exportImportConfiguration.setMvccVersion(mvccVersion);
661            }
662    
663            /**
664            * Sets the name of this export import configuration.
665            *
666            * @param name the name of this export import configuration
667            */
668            @Override
669            public void setName(java.lang.String name) {
670                    _exportImportConfiguration.setName(name);
671            }
672    
673            @Override
674            public void setNew(boolean n) {
675                    _exportImportConfiguration.setNew(n);
676            }
677    
678            /**
679            * Sets the primary key of this export import configuration.
680            *
681            * @param primaryKey the primary key of this export import configuration
682            */
683            @Override
684            public void setPrimaryKey(long primaryKey) {
685                    _exportImportConfiguration.setPrimaryKey(primaryKey);
686            }
687    
688            @Override
689            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
690                    _exportImportConfiguration.setPrimaryKeyObj(primaryKeyObj);
691            }
692    
693            /**
694            * Sets the settings of this export import configuration.
695            *
696            * @param settings the settings of this export import configuration
697            */
698            @Override
699            public void setSettings(java.lang.String settings) {
700                    _exportImportConfiguration.setSettings(settings);
701            }
702    
703            /**
704            * Sets the status of this export import configuration.
705            *
706            * @param status the status of this export import configuration
707            */
708            @Override
709            public void setStatus(int status) {
710                    _exportImportConfiguration.setStatus(status);
711            }
712    
713            /**
714            * Sets the status by user ID of this export import configuration.
715            *
716            * @param statusByUserId the status by user ID of this export import configuration
717            */
718            @Override
719            public void setStatusByUserId(long statusByUserId) {
720                    _exportImportConfiguration.setStatusByUserId(statusByUserId);
721            }
722    
723            /**
724            * Sets the status by user name of this export import configuration.
725            *
726            * @param statusByUserName the status by user name of this export import configuration
727            */
728            @Override
729            public void setStatusByUserName(java.lang.String statusByUserName) {
730                    _exportImportConfiguration.setStatusByUserName(statusByUserName);
731            }
732    
733            /**
734            * Sets the status by user uuid of this export import configuration.
735            *
736            * @param statusByUserUuid the status by user uuid of this export import configuration
737            */
738            @Override
739            public void setStatusByUserUuid(java.lang.String statusByUserUuid) {
740                    _exportImportConfiguration.setStatusByUserUuid(statusByUserUuid);
741            }
742    
743            /**
744            * Sets the status date of this export import configuration.
745            *
746            * @param statusDate the status date of this export import configuration
747            */
748            @Override
749            public void setStatusDate(Date statusDate) {
750                    _exportImportConfiguration.setStatusDate(statusDate);
751            }
752    
753            /**
754            * Sets the type of this export import configuration.
755            *
756            * @param type the type of this export import configuration
757            */
758            @Override
759            public void setType(int type) {
760                    _exportImportConfiguration.setType(type);
761            }
762    
763            /**
764            * Sets the user ID of this export import configuration.
765            *
766            * @param userId the user ID of this export import configuration
767            */
768            @Override
769            public void setUserId(long userId) {
770                    _exportImportConfiguration.setUserId(userId);
771            }
772    
773            /**
774            * Sets the user name of this export import configuration.
775            *
776            * @param userName the user name of this export import configuration
777            */
778            @Override
779            public void setUserName(java.lang.String userName) {
780                    _exportImportConfiguration.setUserName(userName);
781            }
782    
783            /**
784            * Sets the user uuid of this export import configuration.
785            *
786            * @param userUuid the user uuid of this export import configuration
787            */
788            @Override
789            public void setUserUuid(java.lang.String userUuid) {
790                    _exportImportConfiguration.setUserUuid(userUuid);
791            }
792    
793            @Override
794            public com.liferay.portal.model.CacheModel<com.liferay.portlet.exportimport.model.ExportImportConfiguration> toCacheModel() {
795                    return _exportImportConfiguration.toCacheModel();
796            }
797    
798            @Override
799            public com.liferay.portlet.exportimport.model.ExportImportConfiguration toEscapedModel() {
800                    return new ExportImportConfigurationWrapper(_exportImportConfiguration.toEscapedModel());
801            }
802    
803            @Override
804            public java.lang.String toString() {
805                    return _exportImportConfiguration.toString();
806            }
807    
808            @Override
809            public com.liferay.portlet.exportimport.model.ExportImportConfiguration toUnescapedModel() {
810                    return new ExportImportConfigurationWrapper(_exportImportConfiguration.toUnescapedModel());
811            }
812    
813            @Override
814            public java.lang.String toXmlString() {
815                    return _exportImportConfiguration.toXmlString();
816            }
817    
818            @Override
819            public boolean equals(Object obj) {
820                    if (this == obj) {
821                            return true;
822                    }
823    
824                    if (!(obj instanceof ExportImportConfigurationWrapper)) {
825                            return false;
826                    }
827    
828                    ExportImportConfigurationWrapper exportImportConfigurationWrapper = (ExportImportConfigurationWrapper)obj;
829    
830                    if (Validator.equals(_exportImportConfiguration,
831                                            exportImportConfigurationWrapper._exportImportConfiguration)) {
832                            return true;
833                    }
834    
835                    return false;
836            }
837    
838            /**
839             * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
840             */
841            @Deprecated
842            public ExportImportConfiguration getWrappedExportImportConfiguration() {
843                    return _exportImportConfiguration;
844            }
845    
846            @Override
847            public ExportImportConfiguration getWrappedModel() {
848                    return _exportImportConfiguration;
849            }
850    
851            @Override
852            public boolean isEntityCacheEnabled() {
853                    return _exportImportConfiguration.isEntityCacheEnabled();
854            }
855    
856            @Override
857            public boolean isFinderCacheEnabled() {
858                    return _exportImportConfiguration.isFinderCacheEnabled();
859            }
860    
861            @Override
862            public void resetOriginalValues() {
863                    _exportImportConfiguration.resetOriginalValues();
864            }
865    
866            private final ExportImportConfiguration _exportImportConfiguration;
867    }