Iterator<UserAuthInfoRequest.Prompt> it = req.promptIterator();
UserAuthInfoResponse rsp = new UserAuthInfoResponse();
while (it.hasNext()) {
UserAuthInfoRequest.Prompt prompt = it.next();
String reply = kbi.reply(prompt.getPrompt(), prompt.isEcho());
rsp.addResponse(reply);
}
return rsp;
}
@Override