Skip to content

Instantly share code, notes, and snippets.

View Funcke's full-sized avatar
🫒
crafting

Jonas Funcke Funcke

🫒
crafting
View GitHub Profile
@Funcke
Funcke / Authorization.java
Created May 9, 2020 17:48
Authentication Annotation Dev.to
package work.funcke.filter;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Retention(RUNTIME)