I just noticed that the @Restrictions
Annotation is missing in Deadbolt 2.2 and also in the deadbolt-2.1 version.
In the example and the documentation it is explained (http://deadbolt-2-java.herokuapp.com/#controller-Restrictions).
Here it exists (DB-2.1.x): https://github.com/schaloner/deadbolt-2/tree/D2-1.x/project-code/app/be/objectify/deadbolt/actions
Here it doesnt:
deadbolt 2.1: https://github.com/schaloner/deadbolt-2-java/tree/deadbolt-2.1/app/be/objectify/deadbolt/java/actions
master (2.2): https://github.com/schaloner/deadbolt-2-java/tree/master/app/be/objectify/deadbolt/java/actions
Is there a reason why it is missing? How do i accomplish grouping roles togehter using OR without the Annotation, just write my own Dynamic Handler or is there a better way?
Thanks for answering in advance!
I noticed this as well and looked through some of the source. It looks like both the @Restrictions
and @Restrict
annotations were replaced with only @Restrict
. From the comments on the current @Restrict
code:
Within an {@Group} roles are ANDed, and between {@Group} the role groups are ORed. For example, @Restrict({@Group("foo"), @Group("hurdy", "gurdy)}) means the @Subject must have either the foo role OR both the hurdy AND gurdy roles.
So it looks like you can just use the one @Restrict
annotation now combined with the new @Group
one as well.