Package org.eclipse.ecf.protocol.msn.internal.encode

Examples of org.eclipse.ecf.protocol.msn.internal.encode.ResponseCommand.process()


   */
  public ChatSession createChatSession(String email) throws IOException {
    final ResponseCommand cmd = notification.getChatSession();
    final ChatSession cs = new ChatSession(cmd.getParam(2), this, username, cmd.getParam(4));
    // reset the ResponseCommand so that the next XFR request won't conflict
    cmd.process(null);
    cs.invite(email);
    return cs;
  }

  void internalSetDisplayName(String newName) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.