Class ExportDataExchangeConfigurationSpec
- java.lang.Object
-
- com.orchestranetworks.addon.dex.configuration.ExportDataExchangeConfigurationSpec
-
public final class ExportDataExchangeConfigurationSpec extends java.lang.ObjectDefines the configuration used to export the {addon.label} configuration to an XML file.- Since:
- 2.4.2
-
-
Constructor Summary
Constructors Constructor Description ExportDataExchangeConfigurationSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.FilegetExportedFile()Returns the exported file.java.util.Set<com.onwbp.adaptation.PrimaryKey>getPreferenceRecords()Returns aPrimaryKeycollection that identifies records in the Application interface preference table located in the {addon.label} dataset.com.orchestranetworks.service.SessiongetSession()Returns the current session.booleanisXMLCommentOmitted()Returnstrueif the exported XML file omits comments.booleanisXMLIndented()Returnstrueif the exported XML file includes indentations.voidsetExportedFile(java.io.File exportedFile)Sets the exported file.voidsetPreferenceRecords(java.util.Set<com.onwbp.adaptation.PrimaryKey> preferenceRecords)Sets thePrimaryKeycollection that identifies records in the Application interface preference table located in the {addon.label} dataset.voidsetSession(com.orchestranetworks.service.Session session)Sets the current session.voidsetXMLCommentOmitted(boolean xmlCommentOmitted)Sets whether to omit XML comments from the exported XML file.voidsetXMLIndented(boolean xmlIndented)Sets whether lines are indented in the exported XML file.
-
-
-
Method Detail
-
isXMLIndented
public boolean isXMLIndented()
Returnstrueif the exported XML file includes indentations.
-
setXMLIndented
public void setXMLIndented(boolean xmlIndented)
Sets whether lines are indented in the exported XML file.
-
isXMLCommentOmitted
public boolean isXMLCommentOmitted()
Returnstrueif the exported XML file omits comments.
-
setXMLCommentOmitted
public void setXMLCommentOmitted(boolean xmlCommentOmitted)
Sets whether to omit XML comments from the exported XML file.
-
getSession
public com.orchestranetworks.service.Session getSession()
Returns the current session.
-
setSession
public void setSession(com.orchestranetworks.service.Session session)
Sets the current session.
-
getExportedFile
public java.io.File getExportedFile()
Returns the exported file.
-
setExportedFile
public void setExportedFile(java.io.File exportedFile)
Sets the exported file.
-
getPreferenceRecords
public java.util.Set<com.onwbp.adaptation.PrimaryKey> getPreferenceRecords()
Returns aPrimaryKeycollection that identifies records in the Application interface preference table located in the {addon.label} dataset. You can use the collection to export the selected records in the Application interface preference table and the related data from other tables to an XML file.- Since:
- 2.7.0
-
setPreferenceRecords
public void setPreferenceRecords(java.util.Set<com.onwbp.adaptation.PrimaryKey> preferenceRecords)
Sets thePrimaryKeycollection that identifies records in the Application interface preference table located in the {addon.label} dataset. You can use the collection to export the selected records in the Application interface preference table and the related data from other tables to an XML file.- Since:
- 2.7.0
-
-