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

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

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
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 - 2025 Weber Informatics LLC | Privacy Policy