Skip to content

Commit a859ee8

Browse files
committed
Fix for issue 14
1 parent 7559665 commit a859ee8

File tree

1 file changed

+5
-0
lines changed
  • chapter03/bean-aliases/src/main/java/com/apress/prospring5/ch3/annotated

1 file changed

+5
-0
lines changed

chapter03/bean-aliases/src/main/java/com/apress/prospring5/ch3/annotated/Award.java

+5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22

33
import org.springframework.core.annotation.AliasFor;
44

5+
import java.lang.annotation.*;
6+
57
/**
68
* Created by iuliana.cosmina on 2/19/17.
79
*/
10+
@Target({ElementType.TYPE})
11+
@Retention(RetentionPolicy.RUNTIME)
12+
@Documented
813
public @interface Award {
914

1015
@AliasFor("prize")

0 commit comments

Comments
 (0)