Change By: Pedro Igor (12/Feb/14 12:15 PM)
Description: The following configuration should be valid and can not throw any validation exception:

{code:java}
@Test
public void testMultipleIdentityStoreWithValidCredentialSupport() {
        IdentityConfigurationBuilder builder = new IdentityConfigurationBuilder();

        builder
            .named("default")
                .stores()
                    .file()
                        .supportCredentials(true)
                        .supportType(Partition.class)
                        .supportType(IdentityType.class)
                    .jpa()
                        .supportCredentials(false)
                        .supportType(Relationship.class);

        new DefaultPartitionManager(builder.buildAll());
}
{code}

Currently, a validation is thrown if the first store is supporting attributes and the second not.
 But  However, if  you invert the stores the configuration is valid.
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