You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.
Before you upgrade make sure to read the General Upgrade instructions as well as the Upgrade instructions for previous versions.
The changes are color coded. Orange elements have been changed, Green elements have been added and Red elements have been removed compared to the 17.x release.
Table of contents
Content Manager - Improvements / deprecations
In order to improve the performance of the Content Managers we have introduced a new API, resulting in deprecations in the IContentManager and newly introduced IChannelContentManager and IMovingContentManager.
SDK Changes
Added classes
- Added interface com.aquima.interactions.portal.IChannelContentManager
- Added interface com.aquima.interactions.portal.IMovingContentManager
Modified classes
- com.aquima.interactions.portal.IContentManager
- Extends new interface: com.aquima.interactions.portal.IMovingContentManager
- Deprecated method: create(java.io.InputStream, java.lang.String, java.lang.String, java.lang.Long, java.lang.String, com.aquima.interactions.portal.content.CustomContentProperties, com.aquima.interactions.project.IUserData, java.lang.String[])
- Migrate to: com.aquima.interactions.portal.IChannelContentManager.create(java.nio.channels.ReadableByteChannel, java.lang.String, java.lang.String, java.lang.Long, java.lang.String, com.aquima.interactions.portal.content.CustomContentProperties, com.aquima.interactions.project.IUserData, java.lang.String[])
- Deprecated method: readBytes(com.aquima.interactions.foundation.GUID, long, byte[], int, int, com.aquima.interactions.project.IUserData)
- Migrate to: com.aquima.interactions.portal.IChannelContentManager.getReadableByteChannel(com.aquima.interactions.foundation.GUID, com.aquima.interactions.project.IUserData)
- Deprecated method: update(com.aquima.interactions.foundation.GUID, java.io.InputStream, java.lang.String, java.lang.String, java.lang.Long, java.lang.String, com.aquima.interactions.portal.content.CustomContentProperties, com.aquima.interactions.project.IUserData)
- Migrate to: com.aquima.interactions.portal.IChannelContentManager.update(com.aquima.interactions.foundation.GUID, java.nio.channels.ReadableByteChannel, java.lang.String, java.lang.String, java.lang.Long, java.lang.String, com.aquima.interactions.portal.content.CustomContentProperties, com.aquima.interactions.project.IUserData)
- Deprecated method: update(com.aquima.interactions.foundation.GUID, java.io.InputStream, java.lang.String, java.lang.String, com.aquima.interactions.project.IUserData)
- Migrate to: com.aquima.interactions.portal.IChannelContentManager.update(com.aquima.interactions.foundation.GUID, java.nio.channels.ReadableByteChannel, java.lang.String, java.lang.String, com.aquima.interactions.project.IUserData)
Known issues
For an overview of known issue please refer to: Known issues.
Overview
Content Tools