提交 | 用户 | 时间 | ||
fd2207 | 1 | package com.jcdm.common.annotation; |
懒 | 2 | |
3 | import java.lang.annotation.Documented; | |
4 | import java.lang.annotation.ElementType; | |
5 | import java.lang.annotation.Retention; | |
6 | import java.lang.annotation.RetentionPolicy; | |
7 | import java.lang.annotation.Target; | |
8 | ||
9 | /** | |
10 | * 匿名访问不鉴权注解 | |
11 | * | |
12 | * @author jc | |
13 | */ | |
14 | @Target({ ElementType.METHOD, ElementType.TYPE }) | |
15 | @Retention(RetentionPolicy.RUNTIME) | |
16 | @Documented | |
17 | public @interface Anonymous | |
18 | { | |
19 | } |