User: starksm 
  Date: 02/02/28 00:40:52

  Added:       src/resources/securitymgr server.policy
  Log:
  Add the testcase permission policy file and add a Bad bean
  
  Revision  Changes    Path
  1.1                  jbosstest/src/resources/securitymgr/server.policy
  
  Index: server.policy
  ===================================================================
  // The Java2 security policy for the securitymgr tests
  // Install with -Djava.security.policy==server.policy
  
  // Trusted core Java code
  grant codeBase "file:${java.home}/lib/ext/*" {
     permission java.security.AllPermission;
  };
  
  // Only JBoss distribution classes can be under jboss.home
  grant codeBase "file:${jboss.home}/bin/-" {
     permission java.security.AllPermission;
  };
  grant codeBase "file:${jboss.home}/lib/-" {
     permission java.security.AllPermission;
  };
  
  // Minimal permissions are allowed to everyone else
  grant {
     permission java.util.PropertyPermission "*", "read";
     permission java.lang.RuntimePermission "queuePrintJob";
     permission java.net.SocketPermission "*", "connect";
  };
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to