I have started a new thread, as the old one went off course from the original question,
i have a login page, validating against our LDAP server, and where as before i would have the user enter a username to determine where there data is stored by the code :
@Override
public String getName() {
return getId();
}
but i would like to replace the getName() bit with the username the user has already entered from the login page, and so far i have gotten confused with the options, is there a simple way of achieving this ?