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

com.hn.im.easemob.comm.invoker.HttpClientRestAPIInvoker Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.im.easemob.comm.invoker;

import com.hn.im.easemob.api.RestAPIInvoker;
import com.hn.im.easemob.comm.wrapper.BodyWrapper;
import com.hn.im.easemob.comm.wrapper.HeaderWrapper;
import com.hn.im.easemob.comm.wrapper.QueryWrapper;
import com.hn.im.easemob.comm.wrapper.ResponseWrapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;

public class HttpClientRestAPIInvoker implements RestAPIInvoker {
	
	private static final Logger log = LoggerFactory.getLogger(HttpClientRestAPIInvoker.class);

	public ResponseWrapper sendRequest(String method, String url, HeaderWrapper header, BodyWrapper body, QueryWrapper query) {
		return null;
	}

	public ResponseWrapper uploadFile(String url, HeaderWrapper header, File file) {
       return null;
    }

    public ResponseWrapper downloadFile(String url, HeaderWrapper header, QueryWrapper query) {
        return null;
	}
    
    public ResponseWrapper downloadFile(String url) {
        return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy