All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smartboot.http.client.PostBody Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package org.smartboot.http.client;

import java.util.Map;

/**
 * @author 三刀([email protected])
 * @version V1.0 , 2023/2/13
 */
public abstract class PostBody extends CommonBody {
    PostBody(Body body, HttpPost rest) {
        super(body, rest);
    }

    public abstract HttpPost formUrlencoded(Map params);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy