Is it possible to grant same permissions to unrelated codebases (e.g. I can not use wildcards)?
For example I have following permission configuration:
grant codebase "file:/somepath1/code.jar" {
permission my.class.Permission1;
permission my.class.Permission2;
permission my.class.Permission3;
};
I want to grant the same permission set also to /somepath2/code2.jar
and to path3/code3.jar
.
Is it possible to do with single grant section?