10 lines
205 B
Java
10 lines
205 B
Java
|
|
package net.geedge.confagent.annotation;
|
||
|
|
|
||
|
|
import java.lang.annotation.*;
|
||
|
|
|
||
|
|
@Target( {ElementType.METHOD,ElementType.TYPE})
|
||
|
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
|
@Documented
|
||
|
|
public @interface UnCheckToken {
|
||
|
|
}
|