Searched defs:passwordFile (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DFileLoginModule.java70 * A different password file can be specified via the <code>passwordFile</code>
75 * <dt> <code>passwordFile</code> </dt>
152 private String passwordFile; field in class:FileLoginModule
189 passwordFile = (String)options.get("passwordFile");
190 passwordFileDisplayName = passwordFile;
194 if (passwordFile == null) {
195 passwordFile = DEFAULT_PASSWORD_FILE_NAME;
200 passwordFileDisplayName = passwordFile;
477 fis = new FileInputStream(passwordFile);
[all...]
H A DJMXPluggableAuthenticator.java93 String passwordFile = null;
97 passwordFile = (String) env.get(PASSWORD_FILE_PROP);
116 final String pf = passwordFile;
305 private static final String PASSWORD_FILE_OPTION = "passwordFile";
310 * @param passwordFile A filepath that identifies the password file to use.
313 public FileLoginConfig(String passwordFile) { argument
316 if (passwordFile != null) {
318 options.put(PASSWORD_FILE_OPTION, passwordFile);

Completed in 51 milliseconds