com.datastrato.gravitino.annotation.Stable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Gravitino is a high-performance, geo-distributed and federated metadata lake.
The newest version!
/*
* Copyright 2024 Datastrato Pvt Ltd.
* This software is licensed under the Apache License version 2.
*/
package com.datastrato.gravitino.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* APIs that can evolve while retaining compatibility for feature releases (0.5.0 to 0.6.0). The
* compatibility can be broken only in major releases (1.x to 2.x).
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({
ElementType.PACKAGE,
ElementType.CONSTRUCTOR,
ElementType.METHOD,
ElementType.TYPE,
ElementType.FIELD
})
public @interface Stable {
/** @return The version when the API was first marked stable. */
String since();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy