blob: 8170c7d7588fd116621bad74876cd65ade8b1f83 [file] [log] [blame]
package org.apache.shiro.cdi.web;
import javax.inject.Qualifier;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.RetentionPolicy.*;
import static java.lang.annotation.ElementType.*;
@Qualifier
@Retention(RUNTIME)
@Target({TYPE, METHOD, FIELD, PARAMETER})
public @interface Web {
}