[rules-users] inconsistency with 'collect' and the '||' operator

Mike D mike.dalaker at kewill.com
Wed Nov 7 16:36:33 EST 2007


did you try  AccessRule((allowedLocation in ("ANY", $loc)?


Adrian Cowham wrote:
> 
> I'm running into an issue where the || operator embedded in a collect CE
> isn't working as expected. The rule I have is
> 
> rule Grant Access"
>     when
>         $request : AccessRequest($name : username, $ID : sessionID, $loc :
> accessLocation, $day : dayOfAccess)
>         $user : NetworkUser(username == $name)
>         $group : UserGroup(users contains $user)
>         $locationRules : ArrayList(size > 0) from
>             collect (AccessRule((allowedLocation == "ANY" ||
> allowedLocation
> == $loc), allowAccess == "false")
>             from $group.getRules())
>     then
>         # access granted
> 
> end
> 
> 
> The issue I'm having is with AccessRule((allowedLocation == "ANY" ||
> allowedLocation == $loc), allowAccess == "false"), this translate to "all
> access rules that have the allowed location set to ANY or set to the
> location the user is logging in from". I created a UserGroup named "
> super.users" that contains a user named "root" and a single rule that
> allows
> access from ANY location. However, when I simulate a login with "root"
> 
> _______________________________________________
> rules-users mailing list
> rules-users at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/rules-users
> 
> 

-- 
View this message in context: http://www.nabble.com/inconsistency-with-%27collect%27-and-the-%27%7C%7C%27-operator-tf4766961.html#a13636646
Sent from the drools - user mailing list archive at Nabble.com.




More information about the rules-users mailing list