November 2017
Intermediate to advanced
542 pages
14h 24m
English
The default constructor for AbstractAccessDecisionManager has been deprecated along with the setDecisionVoters method. Naturally, this impacts the AffirmativeBased, ConsensusBased, and UnanimousBased subclasses. For example, you may be using the following code snippet:
AffirmativeBased adm = new AffirmativeBased(); adm.setDecisionVoters(voters);
If so, it needs to be migrated to the following code snippet:
AffirmativeBased adm = new AffirmativeBased(voters);
Read now
Unlock full access