Uses of Interface
org.bremersee.data.minio.MinioObjectId
-
-
Uses of MinioObjectId in org.bremersee.data.minio
Subinterfaces of MinioObjectId in org.bremersee.data.minio Modifier and Type Interface Description interface
MinioMultipartFile
The minio multipart file interface.interface
MinioObjectInfo
The minio object info interface.Classes in org.bremersee.data.minio that implement MinioObjectId Modifier and Type Class Description class
DefaultMinioObjectId
The default minio object id.class
MinioMultipartFileImpl
The minio multipart file implementation.Methods in org.bremersee.data.minio that return MinioObjectId Modifier and Type Method Description static MinioObjectId
MinioObjectId. from(@NotEmpty String name)
From object name.static MinioObjectId
MinioObjectId. 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 void
MinioRepository. delete(@NotNull MinioObjectId id)
Delete.void
MinioRepositoryImpl. delete(MinioObjectId id)
boolean
MinioRepository. exists(@NotNull MinioObjectId id)
Checks whether an object with the specified name exists or not.boolean
MinioRepositoryImpl. exists(MinioObjectId id)
Optional<MinioMultipartFile>
MinioRepository. findOne(@NotNull MinioObjectId id)
Find one.Optional<MinioMultipartFile>
MinioRepositoryImpl. findOne(MinioObjectId id)
default String
MinioRepository. getPresignedObjectUrl(@NotNull MinioObjectId id, @NotNull io.minio.http.Method method)
Gets presigned object url.String
MinioRepository. getPresignedObjectUrl(@NotNull MinioObjectId id, @NotNull io.minio.http.Method method, Duration duration)
Gets presigned object url.String
MinioRepositoryImpl. 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.
-