November 2017
Intermediate to advanced
542 pages
14h 24m
English
The AnonymousAuthenticationProvider default constructor and the setKey method were deprecated in favor of using the constructor injection. For example, you may have the following code snippet:
AnonymousAuthenticationProvider provider = new AnonymousAuthenticationProvider(); provider.setKey(key);
The preceding code snippet should be changed to the following code:
AnonymousAuthenticationProvider provider = new AnonymousAuthenticationProvider(key);
Read now
Unlock full access