Find User from java class

Hi experts,What is the method called in find Users Form ?I would like to call it in a java class.From a java class, I would like to look for an IDM user in the lighthouse with a login name as a search criteria, how can I do this ?Thanks a lot
[277 byte] By [idm2006] at [2007-11-26 9:08:16]
# 1

>> From a java class, I would like to look for an IDM user in the lighthouse with a login name as a search criteria, how can I do this ?

Method 1 if you don't call it from your webapps, and suppose you create a class to query you repository.

Method 2 supposed you call your class from the webapps.

Method 1(bad and ugly method, but no need to read specification): look in your repository, lighouse user are stored here.

Look, for example, in the account table.

Method 2: Read the waveset javadoc, at WSUser.

(IDPACK_2005Q3M3/REF/javadoc/com/waveset/object/WSUser.html)

WSUser(java.lang.String name, java.lang.String noop)

try this :

WSUser user = new WSUser("youraccountname", null);

VinZ at 2007-7-6 23:24:21 > top of Java-index,Web & Directory Servers,Directory Servers...