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

org.infinispan.factories.annotations.Start Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
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 starts.
 * 

* * @author Manik Surtani ([email protected]) * @since 4.0 */ @Target(METHOD) @Retention(RetentionPolicy.CLASS) public @interface Start { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy