November 2017
Intermediate to advanced
542 pages
14h 24m
English
GrantedAuthorityImpl was removed in favor of SimpleGrantedAuthority, or implementing your own GrantAuthority object. For example:
new GrantedAuthorityImpl(role);
This should be replaced with the following:
new SimpleGrantedAuthority(role);
Read now
Unlock full access