View Single Post
  #11 (permalink)  
Old 10-13-2009, 03:41 AM
mune72 mune72 is offline
Active Member
 
Posts: 34
Default

Quote:
Originally Posted by mune72 View Post
Unfortunally it doesn't work (I get a java compilation error)...
It was something very silly:
from
Provisioning prov1 = Provisioning.getInstance();
Account retAcct = prov1.get(AccountBy.id, my_uid);
to
Provisioning prov1 = Provisioning.getInstance();
Account retAcct = prov1.get(Provisioning.AccountBy.id, my_uid);

But now I'm quite disappointed; all this effort and everything I can get from the object <Account> retAccnt is only the account's mail adress; do you think I can retrive more?

Thanks
Reply With Quote