com.qcloud.cos.internal.VoidCosResponseHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.internal;
import com.qcloud.cos.http.CosHttpResponse;
public class VoidCosResponseHandler extends AbstractCosResponseHandler {
@Override
public CosServiceResponse handle(CosHttpResponse response) throws Exception {
CosServiceResponse csp = new CosServiceResponse<>();
return csp;
}
}