d5f33c4d420f0bd46c4471d7c67c82a6e382cceb
[demos/spring-boot] / src / main / java / de / juplo / demo / RequestableByHumans.java
1 package de.juplo.demo;
2
3
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 @Target(ElementType.METHOD)
11 @Retention(RetentionPolicy.RUNTIME)
12 public @interface RequestableByHumans
13 {
14 }