Class ExportDataExchangeConfigurationSpec
java.lang.Object
com.orchestranetworks.addon.dex.configuration.ExportDataExchangeConfigurationSpec
Defines the configuration used to export the {addon.label} configuration to an XML file.
- Since:
- 2.4.2
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the exported file.Set<com.onwbp.adaptation.PrimaryKey>
Returns aPrimaryKey
collection that identifies records in the Application interface preference table located in the {addon.label} dataset.com.orchestranetworks.service.Session
Returns the current session.boolean
Returnstrue
if the exported XML file omits comments.boolean
Returnstrue
if the exported XML file includes indentations.void
setExportedFile
(File exportedFile) Sets the exported file.void
setPreferenceRecords
(Set<com.onwbp.adaptation.PrimaryKey> preferenceRecords) Sets thePrimaryKey
collection that identifies records in the Application interface preference table located in the {addon.label} dataset.void
setSession
(com.orchestranetworks.service.Session session) Sets the current session.void
setXMLCommentOmitted
(boolean xmlCommentOmitted) Sets whether to omit XML comments from the exported XML file.void
setXMLIndented
(boolean xmlIndented) Sets whether lines are indented in the exported XML file.
-
Constructor Details
-
ExportDataExchangeConfigurationSpec
public ExportDataExchangeConfigurationSpec()
-
-
Method Details
-
isXMLIndented
public boolean isXMLIndented()Returnstrue
if 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()Returnstrue
if 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
Returns the exported file. -
setExportedFile
Sets the exported file. -
getPreferenceRecords
Returns aPrimaryKey
collection 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
Sets thePrimaryKey
collection 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
-