public OssBlobStore()

in src/main/java/org/elasticsearch/aliyun/oss/blobstore/OssBlobStore.java [38:44]


    public OssBlobStore(String bucket, OssService client) {
        this.client = client;
        this.bucket = bucket;
        if (!doesBucketExist(bucket)) {
            throw new BlobStoreException("bucket does not exist");
        }
    }