Uses of Interface
org.bremersee.data.minio.MinioObjectId
-
Packages that use MinioObjectId Package Description org.bremersee.data.minio -
-
Uses of MinioObjectId in org.bremersee.data.minio
Subinterfaces of MinioObjectId in org.bremersee.data.minio Modifier and Type Interface Description interfaceMinioMultipartFileThe minio multipart file interface.interfaceMinioObjectInfoThe minio object info interface.Classes in org.bremersee.data.minio that implement MinioObjectId Modifier and Type Class Description classDefaultMinioObjectIdThe default minio object id.classMinioMultipartFileImplThe minio multipart file implementation.Methods in org.bremersee.data.minio that return MinioObjectId Modifier and Type Method Description static MinioObjectIdMinioObjectId. from(@NotEmpty String name)From object name.static MinioObjectIdMinioObjectId. from(@NotEmpty String name, String version)From object name and version ID.Methods in org.bremersee.data.minio with parameters of type MinioObjectId Modifier and Type Method Description voidMinioRepository. delete(@NotNull MinioObjectId id)Delete.voidMinioRepositoryImpl. delete(MinioObjectId id)booleanMinioRepository. exists(@NotNull MinioObjectId id)Checks whether an object with the specified name exists or not.booleanMinioRepositoryImpl. exists(MinioObjectId id)Optional<MinioMultipartFile>MinioRepository. findOne(@NotNull MinioObjectId id)Find one.Optional<MinioMultipartFile>MinioRepositoryImpl. findOne(MinioObjectId id)default StringMinioRepository. getPresignedObjectUrl(@NotNull MinioObjectId id, @NotNull io.minio.http.Method method)Gets presigned object url.StringMinioRepository. getPresignedObjectUrl(@NotNull MinioObjectId id, @NotNull io.minio.http.Method method, Duration duration)Gets presigned object url.StringMinioRepositoryImpl. getPresignedObjectUrl(MinioObjectId id, io.minio.http.Method method, Duration duration)Optional<io.minio.ObjectWriteResponse>MinioRepository. save(@NotNull MinioObjectId id, org.springframework.web.multipart.MultipartFile multipartFile, @NotNull DeleteMode deleteMode)Save multipart file.Optional<io.minio.ObjectWriteResponse>MinioRepositoryImpl. save(MinioObjectId id, org.springframework.web.multipart.MultipartFile multipartFile, DeleteMode deleteMode)Method parameters in org.bremersee.data.minio with type arguments of type MinioObjectId Modifier and Type Method Description List<io.minio.messages.DeleteError>MinioRepository. deleteAll(Collection<MinioObjectId> ids)Delete all objects.List<io.minio.messages.DeleteError>MinioRepositoryImpl. deleteAll(Collection<MinioObjectId> ids)Constructors in org.bremersee.data.minio with parameters of type MinioObjectId Constructor Description DefaultMinioObjectId(@NotNull MinioObjectId minioObjectId)Instantiates a new default minio object id.
-