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

net.sf.andromedaioc.annotation.InitMethod Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.annotation;

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

/**
 * Mark method to be called after all dependencies are injected. One bean can have only one init method. The
 * init method should not contains any arguments
 *
 * @author Alexey Mitrov
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface InitMethod {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy