Spring Initializr: 3.1.0-M2 / Spring WebMVC / Thymeleaf
[demos/spring-boot] / 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 }