We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfbb909 commit 2ed9ffaCopy full SHA for 2ed9ffa
application/wypl-core/src/main/java/com/wypl/wyplcore/auth/annotation/Authenticated.java
@@ -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