![JAR search and dependency download from the Maven repository](/logo.png)
com.ksyun.ks3.service.request.ListBucketsRequest Maven / Gradle / Ivy
package com.ksyun.ks3.service.request;
import com.ksyun.ks3.http.HttpMethod;
import com.ksyun.ks3.http.Request;
/**
* @author lijunwei[[email protected]]
*
* @date 2014年10月14日 下午6:26:58
*
* @description 列出当前账户下的所有bucket信息
**/
public class ListBucketsRequest extends Ks3WebServiceRequest{
@Override
public void validateParams() throws IllegalArgumentException {
}
@Override
public void buildRequest(Request request) {
request.setMethod(HttpMethod.GET);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy