类 BucketController
java.lang.Object
cn.herodotus.engine.oss.minio.controller.BucketController
- 所有已实现的接口:
Controller
@RestController
@RequestMapping("/oss/minio/bucket")
public class BucketController
extends Object
implements Controller
Description: Minio 对象存储 Bucket 管理接口
- 作者:
- : gengwei.zheng
- Date:
- : 2022/7/2 14:45
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明cn.herodotus.engine.assistant.core.domain.Result<String>create(CreateBucketDto domain) cn.herodotus.engine.assistant.core.domain.Result<String>delete(RemoveBucketArgsDto domain) cn.herodotus.engine.assistant.core.domain.Result<List<MinioBucket>>findAll()cn.herodotus.engine.assistant.core.domain.Result<String>make(MakeBucketArgsDto domain) 从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 cn.herodotus.engine.rest.core.controller.Controller
getPageInfoMap, getPageInfoMap, result, result, result, result, result, result
-
构造器详细资料
-
BucketController
-
-
方法详细资料
-
findAll
@AccessLimited @GetMapping("/list") public cn.herodotus.engine.assistant.core.domain.Result<List<MinioBucket>> findAll() -
make
@Idempotent @PostMapping public cn.herodotus.engine.assistant.core.domain.Result<String> make(@Validated @RequestBody MakeBucketArgsDto domain) -
create
@Idempotent @PostMapping("/create") public cn.herodotus.engine.assistant.core.domain.Result<String> create(@Validated @RequestBody CreateBucketDto domain) -
delete
@Idempotent @DeleteMapping public cn.herodotus.engine.assistant.core.domain.Result<String> delete(@Validated @RequestBody RemoveBucketArgsDto domain)
-