mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2 to HEAD
16823: ETHREEOH-3028 - Multivalue property does not allow deploy 16827: ETHREEOH-2678 - Unfriendly system error occurs when trying to view Workflows information on content Details page if workflow was canceled 16832: ALFCOM-3021 - Replace 3.1 POI with version 3.5 16927: 15614 - ETHREEOH-2273 - FSR Prepare callback exception messages git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16978 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -687,13 +687,23 @@ public class PropertyValue implements Cloneable, Serializable
|
||||
}
|
||||
else if (value instanceof Collection)
|
||||
{
|
||||
Collection collection = (Collection) value;
|
||||
ValueType collectionValueType = makeValueType(typeQName);
|
||||
// convert the collection values - we need to do this to ensure that the
|
||||
// values provided conform to the given type
|
||||
ArrayList<Serializable> convertedCollection = collectionValueType.convert(collection);
|
||||
// the persisted type is, nonetheless, a serializable
|
||||
setPersistedValue(ValueType.SERIALIZABLE, convertedCollection);
|
||||
if(typeQName != null)
|
||||
{
|
||||
Collection collection = (Collection) value;
|
||||
ValueType collectionValueType = makeValueType(typeQName);
|
||||
// convert the collection values - we need to do this to ensure that the
|
||||
// values provided conform to the given type
|
||||
|
||||
ArrayList<Serializable> convertedCollection = collectionValueType.convert(collection);
|
||||
// the persisted type is, nonetheless, a serializable
|
||||
setPersistedValue(ValueType.SERIALIZABLE, convertedCollection);
|
||||
}
|
||||
else
|
||||
{
|
||||
setPersistedValue(ValueType.SERIALIZABLE, value);
|
||||
}
|
||||
|
||||
|
||||
setMultiValued(true);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user