http://anonsvn.jboss.org/repos/jbossas/branches/Branch_4_2/security/src/m...
That is the JACC policy we use.
| public PermissionCollection getPermissions(ProtectionDomain domain)
| {
| PermissionCollection pc = super.getPermissions(domain);
| PermissionCollection delegated = delegate.getPermissions(domain);
| for (Enumeration e = delegated.elements(); e.hasMoreElements();)
| {
| Permission p = (Permission) e.nextElement();
| pc.add(p);
| }
| return pc;
| }
|
What JVM (vendor/version) are you using?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4206738#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...