Skip to content

Commit 2ed9ffa

Browse files
committed
Feat(#23): Athenticated annotation 추가
1 parent bfbb909 commit 2ed9ffa

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.wypl.wyplcore.auth.annotation;
2+
3+
import java.lang.annotation.ElementType;
4+
import java.lang.annotation.Retention;
5+
import java.lang.annotation.RetentionPolicy;
6+
import java.lang.annotation.Target;
7+
8+
@Target(ElementType.PARAMETER)
9+
@Retention(RetentionPolicy.RUNTIME)
10+
public @interface Authenticated {
11+
}

0 commit comments

Comments
 (0)