Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
OpenCMIS 0.10.0
-
None
Description
The ObjectType implementations DocumentTypeImpl, FolderTypeImpl and SecondaryTypeImpl do not take over the list of cmis extensions from the TypeDefinitions.
For example:
org.apache.chemistry.opencmis.client.runtime.objecttype.DocumentTypeImpl#DocumentTypeImpl(Session, DocumentTypeDefinition)
should call
org.apache.chemistry.opencmis.commons.data.ExtensionData#setExtensions(List<CmisExtensionElement>); setExtensions(typeDefinition.getExtensions());
Right now the list of extension elements isn't taken from the typeDefinition and so gets lost.