Sign in
code
/
edge
/
openjdk
/
refs/heads/jdk8u111-b09
/
.
/
jdk
/
test
/
java
/
nio
/
file
/
WatchService
/
grantDirAndOneLevel.policy
blob: 1a34646464a1910678ad9d06524555086b412cb8 [
file
] [
log
] [
blame
] [
edit
]
// policy file that grants read access to source directory and its entries
grant
{
permission java
.
io
.
FilePermission
"${test.src}"
,
"read"
;
permission java
.
io
.
FilePermission
"${test.src}${file.separator}*"
,
"read"
;
};