I have some code which is reading user input from console using below code.
Console console = System.console();
String input = console.readLine();
However, this code should run in a very secure env, where every action's permissions are controlled through a policy file.
So I did my testing of the java code with policy file as
grant codeBase "file:/myjar.jar" {
permission java.security.AllPermission;
};
I have no clue, what permission I should use to grant permission to console.readLine().