tags:

views:

40

answers:

1

Hi,

I need in my application to get all permissions associated with a specific role with seam ?

I tried with permissionManager.listPermissions but this method gives permissions associated with a specific target and not a specific recipient (role in my case).

Thanks for your help.

+3  A: 

Hi,

this is not possible by default in Seam. However, you can extend your permission store to do this. If you are using the JpaPermissionStore (which in most of the cases is true), you can check this link

Fortega
Thanks for your answer. It work for me.
Kiva