Migrating to GroupDocs.Assembly 18.9 or Higher
Leave feedback
Note
This document describes the changes to the GroupDocs.Assembly API from version 18.7 to 18.9 or greater that may be of interest to module/application developers. It includes not only new and updated public methods, added & removed classes etc., but also a description of any changes in the behaviour behind the scenes in GroupDocs.Assembly.
Breaking changes
Removed members of DocumentAssembler were replaced with new ones. Removed members were not marked as obsolete (deprecated) before removal as usual, because this would complicate migration to new members of DocumentAssembler in Java. Thus, we have introduced a breaking change and customers need to migrate their code from removed members of DocumentAssembler to newly added ones when upgrading to the new version of GroupDocs.Assembly.
Since version 18.9, the Metered licensing security has been improved. Metered licensing is now applicable only in Java runtime version 8u101 or above. Please use other types of licensing if you are using v18.9 or greater in Java 7.
Newly added types
Java
/**
* Provides information on a single data source object to be used to assemble a document from a template.
*/publicclassDataSourceInfo
Java
/**
* A utility class providing constants. Specifies the format of a file.
*/publicfinalclassFileFormat
Java
/**
* Specifies additional options for loading and saving of a document to be assembled.
*/publicclassLoadSaveOptions
New members of DocumentAssembler
Java
/**
* Loads a template document from the specified source path, populates the template document with data from the specified single or multiple sources, and stores the result document to the target path using default {@link com.groupdocs.assembly.LoadSaveOptions}.
*
* @param sourcePath The path to a template document to be populated with data.
* @param targetPath The path to a result document.
* @param dataSourceInfos Provides information on data source objects to be used.
*/publicvoidassembleDocument(StringsourcePath,StringtargetPath,DataSourceInfo...dataSourceInfos)throwsException
Java
/**
* Loads a template document from the specified source path, populates the template document with data from the specified single or multiple sources, and stores the result document to the target path using the given {@link com.groupdocs.assembly.LoadSaveOptions}.
*
* @param sourcePath The path to a template document to be populated with data.
* @param targetPath The path to a result document.
* @param loadSaveOptions Specifies additional options for document loading and saving.
* @param dataSourceInfos Provides information on data source objects to be used.
*/publicvoidassembleDocument(StringsourcePath,StringtargetPath,LoadSaveOptionsloadSaveOptions,DataSourceInfo...dataSourceInfos)throwsException
Java
/**
* Loads a template document from the specified source stream, populates the template document with data from the specified single or multiple sources, and stores the result document to the target stream using default {@link com.groupdocs.assembly.LoadSaveOptions}.
*
* @param sourceStream The stream to read a template document from.
* @param targetStream The stream to write a result document.
* @param dataSourceInfos Provides information on data source objects to be used.
*/publicvoidassembleDocument(InputStreamsourceStream,OutputStreamtargetStream,DataSourceInfo...dataSourceInfos)throwsException
Java
/**
* Loads a template document from the specified source stream, populates the template document with data from the specified single or multiple sources, and stores the result document to the target stream using the given {@link com.groupdocs.assembly.LoadSaveOptions}.
*
* @param sourceStream The stream to read a template document from.
* @param targetStream The stream to write a result document.
* @param loadSaveOptions Specifies additional options for document loading and saving.
* @param dataSourceInfos Provides information on data source objects to be used.
*/publicvoidassembleDocument(InputStreamsourceStream,OutputStreamtargetStream,LoadSaveOptionsloadSaveOptions,DataSourceInfo...dataSourceInfos)throwsException
Removed members of DocumentAssembler were replaced with new ones. Removed members were not marked as obsolete (deprecated) before removal as usual, because this would complicate migration to new members of DocumentAssembler in Java. Thus, we have introduced a breaking change and customers need to migrate their code from removed members of DocumentAssembler to newly added ones when upgrading to the new version of GroupDocs.Assembly.
Migrating code from removed members of DocumentAssembler to newly added ones
The following table shows how to migrate code from removed members of DocumentAssembler to newly added ones.
assembler.assembleDocument(sourcePath, targetPath, new DataSourceInfo(dataSource1, dataSourceName1), new DataSourceInfo(dataSource2, dataSourceName2));
assembler.assembleDocument(sourceStream, targetStream, new DataSourceInfo(dataSource1, dataSourceName1), new DataSourceInfo(dataSource2, dataSourceName2));
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.