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

org.hibernate.validator.Incubating Maven / Gradle / Ivy

There is a newer version: 8.0.1.Final
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Marks the annotated element as incubating. The contract of incubating elements (e.g. packages, types, methods,
 * constants etc.) is under active development and may be incompatibly altered - or removed - in subsequent releases.
 * 

* Usage of incubating API/SPI members is encouraged (so the development team can get feedback on these new features) * but you should be prepared for updating code which is using them as needed. * * @author Gunnar Morling */ @Documented @Retention(RetentionPolicy.CLASS) public @interface Incubating { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy