Searched refs:restrictedFileName (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java587 private static void checkRestrictedFile(String restrictedFileName) { argument
588 if (restrictedFileName == null || restrictedFileName.length() == 0) {
591 File file = new File(restrictedFileName);
593 throw new AgentConfigurationError(FILE_NOT_FOUND, restrictedFileName);
596 throw new AgentConfigurationError(FILE_NOT_READABLE, restrictedFileName);
604 restrictedFileName);
607 FILE_ACCESS_NOT_RESTRICTED, restrictedFileName);
612 FILE_READ_FAILED, e, restrictedFileName);

Completed in 2421 milliseconds