Skip to content

Commit

Permalink
GERONIMO-6569 javax.annotation.Resource is not compliant with JSR250 …
Browse files Browse the repository at this point in the history
…mrel2/3

Committed on behalf of Svetlin Zarev

Signed-off-by: Svetlin Zarev <[email protected]>
Signed-off-by: Raymond Auge <[email protected]>

git-svn-id: https://svn.apache.org/repos/asf/geronimo/specs/trunk@1838554 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rotty3000 committed Aug 21, 2018
1 parent 57cfb0e commit bbfd4ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum AuthenticationType {

String name() default "";

Class type() default Object.class;
Class<?> type() default Object.class;

AuthenticationType authenticationType()
default AuthenticationType.CONTAINER;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ enum AuthenticationType {

String name() default "";

Class type() default Object.class;
Class<?> type() default Object.class;

AuthenticationType authenticationType()
default AuthenticationType.CONTAINER;
Expand Down

0 comments on commit bbfd4ab

Please sign in to comment.