jdk/test/java/net/InetAddress/policy.file
author jjg
Wed, 04 Jan 2017 18:33:20 -0800
changeset 43029 1cd1c816581e
parent 2 90ce3da70b43
permissions -rw-r--r--
8172260: remove tests from ProblemList Reviewed-by: rfield
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
	permission javax.security.auth.AuthPermission "modifyPrincipals";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
	permission javax.security.auth.AuthPermission "doAsPrivileged";	
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
	permission java.util.PropertyPermission "*", "read,write";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
grant Principal MyPrincipal "test" { 
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
	permission java.net.SocketPermission "${host.name}", "resolve";
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10