Aaron Evans wrote:
Cool, thx. Yeah, after I thought about it a little more, I figured it
probably wouldn't matter as the stuff for john.smith would still be kept
separate from john.doe. They would just happen to have a common parent
node...
In case you require that usernames are stored in the database in a true
representation, the patch below might be useful for you
BasePrincipalImpl.java
public static String getFullPathFromPrincipalName(String name,
String prefsRoot)
{
String fullPath = name;
// PATCH : DST
if (null != fullPath &&
!prefsRoot.startsWith(UserPrincipalImpl.PREFS_USER_ROOT))
// if ( null != fullPath)
{
fullPath = prefsRoot + fullPath.replace('.', '/');
}
else
{
fullPath = prefsRoot + fullPath;
}
return fullPath;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]