Package net.solosky.maplefetion.client.response

Examples of net.solosky.maplefetion.client.response.DeleteCordResponseHandler


    this.ensureOpened();
    Collection<Buddy> list = this.context.getFetionStore().getBuddyListByCord(cord);
    if(list!=null && list.size()>0)
      throw new IllegalArgumentException(cord+" is not empty, please move out the buddies in this cord and try again.");
    SipcRequest request = this.messageFactory.createDeleteCordRequest(cord.getId());
    request.setResponseHandler(new DeleteCordResponseHandler(context,this, listener));
    this.process(request);
  }
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.client.response.DeleteCordResponseHandler

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.