You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@syncope.apache.org by "fabio martelli (JIRA)" <ji...@apache.org> on 2013/07/04 16:09:48 UTC

[jira] [Assigned] (SYNCOPE-399) Role attribute mapping for user mapping item doesn't result in a multivalue property

     [ https://issues.apache.org/jira/browse/SYNCOPE-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

fabio martelli reassigned SYNCOPE-399:
--------------------------------------

    Assignee: fabio martelli
    
> Role attribute mapping for user mapping item doesn't result in a multivalue property
> ------------------------------------------------------------------------------------
>
>                 Key: SYNCOPE-399
>                 URL: https://issues.apache.org/jira/browse/SYNCOPE-399
>             Project: Syncope
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 1.1.2, 1.2.0
>            Reporter: fabio martelli
>            Assignee: fabio martelli
>             Fix For: 1.1.3, 1.2.0
>
>
> Role attribute mapping for user mapping item doesn't result in a multivalue property.
> Take a look at MappingUtil.prepareAttribute() method: at the end of this method the cardinality of the attribute to be propagated has been retrieved by the following code
>            if (schema != null && schema.isMultivalue()) {
>                 result = new AbstractMap.SimpleEntry<String, Attribute>(null, AttributeBuilder.build(extAttrName,
>                         objValues));
>             } else {
>                 result = new AbstractMap.SimpleEntry<String, Attribute>(null, objValues.isEmpty()
>                         ? AttributeBuilder.build(extAttrName)
>                         : AttributeBuilder.build(extAttrName, objValues.iterator().next()));
>             }
> In case of user mapping item related to a merbership or role attribute (non multivalued) a single value will be propagated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira