18 lines
711 B
Plaintext
18 lines
711 B
Plaintext
/* ===========================================================================
|
|
* Licensed Materials - Property of IBM
|
|
*
|
|
* (C) Copyright IBM Corp. 2000 All Rights Reserved.
|
|
*
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
* ===========================================================================
|
|
*/
|
|
|
|
/**** CodeSource- and Subject-based policy file for JAAS HelloWorld ****/
|
|
|
|
grant Principal com.ibm.security.HWPrincipal "bob" {
|
|
permission java.util.PropertyPermission "java.home", "read";
|
|
permission java.util.PropertyPermission "user.home", "read";
|
|
permission java.io.FilePermission "foo.txt", "read";
|
|
};
|