Package com.ibm.sbt.services.util

Examples of com.ibm.sbt.services.util.HttpDeleteWithBody


      response = execRequest(httpPut, args, content);
    } else if (StringUtil.equalsIgnoreCase(method, METHOD_DELETE)) {
      HttpDelete httpDelete = new HttpDelete(url);
      response = execRequest(httpDelete, args, content);
    } else if (StringUtil.equalsIgnoreCase(method,METHOD_DELETE_BODY)){
      HttpDeleteWithBody httpDelete = new HttpDeleteWithBody(url);
      response = execRequest(httpDelete, args, content);
    } else {
      throw new ClientServicesException(null, "Unsupported HTTP method {0}", method);
    }
   
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.util.HttpDeleteWithBody

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.