Package com.devteam.library.easyhttpclient.builder.sync.executors

Examples of com.devteam.library.easyhttpclient.builder.sync.executors.EasyHttpSyncSingleExecutorDelete


  }

  public EasyHttpSyncSingleExecutorDelete delete(String url,
      Serializable contentToSend) {
    answer.add(RequestType.JSON_DELETE, url, null, contentToSend);
    return new EasyHttpSyncSingleExecutorDelete(answer);
  }
View Full Code Here


  }

  public EasyHttpSyncSingleExecutorDelete delete(String url,
      String contentToSend) {
    answer.add(RequestType.STRING_DELETE, url, null, contentToSend);
    return new EasyHttpSyncSingleExecutorDelete(answer);
  }
View Full Code Here

TOP

Related Classes of com.devteam.library.easyhttpclient.builder.sync.executors.EasyHttpSyncSingleExecutorDelete

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.