Package com.mashape.unirest.request

Examples of com.mashape.unirest.request.HttpRequestWithBody


  public static GetRequest head(String url) {
    return new GetRequest(HttpMethod.HEAD, url);
  }
 
  public static HttpRequestWithBody options(String url) {
    return new HttpRequestWithBody(HttpMethod.OPTIONS, url);
  }
View Full Code Here


  public static HttpRequestWithBody options(String url) {
    return new HttpRequestWithBody(HttpMethod.OPTIONS, url);
  }
 
  public static HttpRequestWithBody post(String url) {
    return new HttpRequestWithBody(HttpMethod.POST, url);
  }
View Full Code Here

  public static HttpRequestWithBody post(String url) {
    return new HttpRequestWithBody(HttpMethod.POST, url);
  }
 
  public static HttpRequestWithBody delete(String url) {
    return new HttpRequestWithBody(HttpMethod.DELETE, url);
  }
View Full Code Here

  public static HttpRequestWithBody delete(String url) {
    return new HttpRequestWithBody(HttpMethod.DELETE, url);
  }
 
  public static HttpRequestWithBody patch(String url) {
    return new HttpRequestWithBody(HttpMethod.PATCH, url);
  }
View Full Code Here

  public static HttpRequestWithBody patch(String url) {
    return new HttpRequestWithBody(HttpMethod.PATCH, url);
  }
 
  public static HttpRequestWithBody put(String url) {
    return new HttpRequestWithBody(HttpMethod.PUT, url);
  }
View Full Code Here

TOP

Related Classes of com.mashape.unirest.request.HttpRequestWithBody

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.