use of com.aliyun.oss.internal.OSSMultipartOperation in project aliyun-oss-java-sdk by aliyun.
the class OSSClient method initOperations.
private void initOperations() {
this.bucketOperation = new OSSBucketOperation(this.serviceClient, this.credsProvider);
this.objectOperation = new OSSObjectOperation(this.serviceClient, this.credsProvider);
this.multipartOperation = new OSSMultipartOperation(this.serviceClient, this.credsProvider);
this.corsOperation = new CORSOperation(this.serviceClient, this.credsProvider);
this.uploadOperation = new OSSUploadOperation(this.multipartOperation);
this.downloadOperation = new OSSDownloadOperation(objectOperation);
this.liveChannelOperation = new LiveChannelOperation(this.serviceClient, this.credsProvider);
this.udfOperation = new OSSUdfOperation(this.serviceClient, this.credsProvider);
}
Aggregations