com.kapeta.spring.annotation.KapetaEnableCloudBucket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloud-bucket Show documentation
Show all versions of cloud-bucket Show documentation
Cloud bucket support for Kapeta Spring Boot SDK
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/
package com.kapeta.spring.annotation;
import java.lang.annotation.*;
/**
* Annotation to enable Kapeta Cloud Bucket configuration in a Spring application.
* Classes annotated with {@code KapetaEnableCloudBucket} will trigger the necessary configurations
* for interacting with a MinIO server and creating a cloud bucket.
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface KapetaEnableCloudBucket {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy