22 lines
506 B
Java
22 lines
506 B
Java
package info.ebenoit.ebul.cmp;
|
|
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
|
|
|
|
/**
|
|
* This annotation indicates that a component will be started automatically, even if it is not needed by other
|
|
* components.
|
|
*
|
|
* @author <a href="mailto:ebenoit@ebenoit.info">E. Benoît</a>
|
|
*/
|
|
@Retention( RetentionPolicy.RUNTIME )
|
|
@Target( ElementType.TYPE )
|
|
public @interface Autostart
|
|
{
|
|
// EMPTY
|
|
}
|