In my web application I am providing platform to run external codes which will be stored in a particular location say "C:\Users\test".
I want to deny permission for System.getProperty("user.home")
to read and write and not be able to make any http connection through the codes. How to achieve this?
I also have another question related to it , that is, as we all know that we cannot deny permissions from policy text file , so can anyone let me know what are the permissions given when we mention permission java.security.AllPermission;
in policy file?