All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rt.storage.api.client.util.Beta Maven / Gradle / Ivy

package com.rt.storage.api.client.util;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Use this annotation to indicate that a public API (class, method or field) is beta.
 *
 * 

Beta API is subject to incompatible changes or removal in the future. It may also mean that * the server features it depends on are potentially subject to breakage at any time. * *

That API is exempt from any compatibility guarantees made by its containing library. Read * carefully the JavaDoc of the API bearing this annotation for better understanding of the risk. * *

To provide a smoother upgrade path when we make incompatible changes to beta API, whenever * possible we try to deprecate the old beta API in the first minor release, and then remove it in * the second minor release. * *

It is generally inadvisable for other non-beta libraries to use beta API from this library. * The problem is that other libraries don't have control over the version of this library being * used in client applications, and if the wrong version of this library is used, it has the * potential to break client applications. * *

You may use the http-client-findbugs plugin to find usages of API bearing this * annotation. * * @since 1.15 * @author Eyal Peled */ @Target( value = { ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD, ElementType.TYPE, ElementType.PACKAGE }) @Documented public @interface Beta {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy