Author: taylor
Date: Wed Oct 31 10:26:57 2007
New Revision: 590760
URL: http://svn.apache.org/viewvc?rev=590760&view=rev
Log:
https://issues.apache.org/jira/browse/JS2-797
found this one while cleaning up docs
uid shouldn't be hard coded as its not always the attribute name
Modified:
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapMemberShipDaoImpl.java
Modified:
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapMemberShipDaoImpl.java
URL:
http://svn.apache.org/viewvc/portals/jetspeed-2/branches/JETSPEED-2.1.3/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapMemberShipDaoImpl.java?rev=590760&r1=590759&r2=590760&view=diff
==============================================================================
---
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapMemberShipDaoImpl.java
(original)
+++
portals/jetspeed-2/branches/JETSPEED-2.1.3/components/security/src/java/org/apache/jetspeed/security/spi/impl/ldap/LdapMemberShipDaoImpl.java
Wed Oct 31 10:26:57 2007
@@ -482,8 +482,9 @@
return getUserAttributes();
}
- protected String getEntryPrefix() {
- return "uid";
+ protected String getEntryPrefix()
+ {
+ return this.getUidAttribute();
}
protected String getSearchSuffix() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]