package com.github.java8.lambdasinaction.app; import java.lang.annotation.Repeatable; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Repeatable(Authors.class) @Retention(RetentionPolicy.RUNTIME) public @interface Author { String name(); }