Issue Type: Enhancement Enhancement
Affects Versions: PLINK_2.5.2.FInal
Assignee: Pedro Igor
Components: IDM
Created: 30/Oct/13 11:54 AM
Description:

Currently the LDAP store configuration forces users to provide the supported types as follows:

.ldap()
    .supportType(Agent.class) // redundant supported type configuration
    .mapping(Agent.class)
    .objectClasses("account")
    .attribute("loginName", UID, true)
    .readOnlyAttribute("createdDate", CREATE_TIMESTAMP)

We can simplify the configuration by discovering all supported types from the mapping configuration, as follows:

.ldap()
.mapping(Agent.class) // the Agent type is automatically added to the lit of supported types
.objectClasses("account")
.attribute("loginName", UID, true)
.readOnlyAttribute("createdDate", CREATE_TIMESTAMP)


Fix Versions: PLINK_2.5.3.Final
Project: PicketLink
Priority: Minor Minor
Reporter: Pedro Igor
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