me.chanjar.weixin.mp.util.requestexecuter.material.MaterialVideoInfoRequestExecutor Maven / Gradle / Ivy
package me.chanjar.weixin.mp.util.requestexecuter.material;
import java.io.IOException;
import me.chanjar.weixin.common.enums.WxType;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.util.http.RequestExecutor;
import me.chanjar.weixin.common.util.http.RequestHttp;
import me.chanjar.weixin.common.util.http.ResponseHandler;
import me.chanjar.weixin.mp.bean.material.WxMpMaterialVideoInfoResult;
public abstract class MaterialVideoInfoRequestExecutor implements RequestExecutor {
protected RequestHttp requestHttp;
public MaterialVideoInfoRequestExecutor(RequestHttp requestHttp) {
this.requestHttp = requestHttp;
}
@Override
public void execute(String uri, String data, ResponseHandler handler, WxType wxType) throws WxErrorException, IOException {
handler.handle(this.execute(uri, data, wxType));
}
public static RequestExecutor create(RequestHttp requestHttp) {
switch (requestHttp.getRequestType()) {
case APACHE_HTTP:
return new MaterialVideoInfoApacheHttpRequestExecutor(requestHttp);
case JODD_HTTP:
return new MaterialVideoInfoJoddHttpRequestExecutor(requestHttp);
case OK_HTTP:
return new MaterialVideoInfoOkhttpRequestExecutor(requestHttp);
default:
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy