} else if ("modules".equals(option)) {
Collections.addAll(userModules,
StringUtils.split(arg, File.pathSeparator));
} else if ("policy".equals(option)) {
System.setProperty("java.security.policy", arg);
System.setSecurityManager(new RingoSecurityManager());
} else if ("java-property".equals(option)) {
if (arg.contains("=")) {
String property[] = arg.split("=", 2);
System.setProperty(property[0], property[1]);
}