Package org.xulfactory.gliese.message

Examples of org.xulfactory.gliese.message.UserAuthInfoResponse


      UserAuthInfoRequest req = (UserAuthInfoRequest)lastMessage;
      if (req.getInstruction() != null) {
        kbi.prompt(req.getInstruction());
      }
      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;
    }
View Full Code Here

TOP

Related Classes of org.xulfactory.gliese.message.UserAuthInfoResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.