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

cn.authing.sdk.java.model.AuthingRequestConfig Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.model;

import java.util.Map;

/**
 * @author luojielin
 */
public class AuthingRequestConfig {

    private String url;

    private String method;

    private Object body;

    private Map headers;

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public Object getBody() {
        return body;
    }

    public void setBody(Object body) {
        this.body = body;
    }

    public Map getHeaders() {
        return headers;
    }

    public void setHeaders(Map headers) {
        this.headers = headers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy