blob: dfcedab5e006bcf973b07c568bb8e4c6552675f6 [file] [log] [blame]
package org.apache.pluto.container.bean.processor;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.METHOD;
import javax.inject.Qualifier;
/**
* An annotation that is used as a qualifier for normal CDI events.
*
* @author ahmed
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
@Target({FIELD, METHOD, PARAMETER, TYPE})
public @interface NormalEvent {}