DevOps Cloud (ADM)
Cybersecurity
IT Operations Cloud
Many organizations need or desire to process or filter user attributes after user authentication before share those attributes with any other service. Use cases are,
NetIQ Access Manager Identity Server setup details
/**
* LDAPAttribute names array to be modified.
*
*/
final String m_attributeNames[] = {"givenName","carLicense"};
private String getModifiedLDAPAttrValue(String attrName, String oldValue)
https://<<IDP dns and port>>/nidp/jsp/attrfilter.jsp?user=<USERID>&store=<STOREID>&returl=<RETURN_URL>
E.g., https//namtest.com/nidp/jsp/attrfilter.jsp?user=<USERID>&store=<STOREID>&returl=<RETURN_URL>
Using Custom LDAP attribute setup details
Use Case example:
Prepare custom attribute by joining two LDAP attributes, this custom attribute can be sent via federation to third party or NetIQ Access Gateway server.
Steps:
setCustomAttributeValue(request,"mycustom1");
Note: Modified attribute values might be available with Role policy, Not tested.
Please share your comments!!