org.infinispan.factories.annotations.Stop Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-component-annotations Show documentation
Show all versions of infinispan-component-annotations Show documentation
Annotations for Infinispan components and MBeans
package org.infinispan.factories.annotations;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Method level annotation that indicates a (no-param) method to be called on a component registered in the
* component registry when the registry stops.
*
*
* @author Manik Surtani ([email protected])
* @since 4.0
*/
@Target(METHOD)
@Retention(RetentionPolicy.CLASS)
public @interface Stop {
}