blob: 61cd1567058add17c32b90cbabecf96aab4d1e5f [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 catching the
* invocation of cross context CDI events.
*
* @author ahmed
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
@Target({FIELD, METHOD, PARAMETER, TYPE})
public @interface CatcherEvent {}