com.hextremelabs.quickee.security.AuthTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickee Show documentation
Show all versions of quickee Show documentation
A utility Java EE development library
package com.hextremelabs.quickee.security;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
/**
*
* @author oladeji
*/
@Target(METHOD)
@Retention(RUNTIME)
public @interface AuthTarget {
String value() default "";
}