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

org.jgroups.annotations.Unsupported Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.jgroups.annotations;

import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Elements annotated with this annotation are unsupported and may get removed from the distribution at any time
 * @author Bela Ban
 */
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.PACKAGE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Unsupported {
    String comment() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy