9.2 Installation of Tracy 337
3};
4
5 grant codeBase "file:${user.dir}/lib/agency.jar" {
6 permission java.security.AllPermission;
7};
8
9 grant codeBase "file:${user.dir}/plugins/-" {
10 permission java.security.AllPermission;
11 };
For sake of simplicity, we also inserted a grant entry for all plugins here and
grant each of them all permissions. You can adapt this configuration to your
own preferences (see the plugin documentation to learn which permission
each plugin needs).
This file can also be used to grant permissions to agents in a static way, that
is, you cannot revoke these permissions after they have been granted, which
is sufficient in many application scenarios. The way to grant permissions to
agents is comparable to the examples above. You have ...