*/
public static User createUser(String name, String password,
int serverId,
String identityClassName) throws ConnectException, AdminException {
if (wrapper == null)
throw new ConnectException("Administrator not connected.");
return wrapper.createUser(name, password, serverId, identityClassName);
}