Package com.github.restdriver.serverdriver.http

Examples of com.github.restdriver.serverdriver.http.RequestBody


     * @param content Request body content as String.
     * @param contentType content-type eg text/plain.
     * @return The new request body instance.
     */
    public static RequestBody body(String content, String contentType) {
        return new RequestBody(content, contentType);
    }
View Full Code Here

TOP

Related Classes of com.github.restdriver.serverdriver.http.RequestBody

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.