Searched refs:userName (Results 1 - 25 of 29) sorted by relevance

12

/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DPasswordAuthentication.java42 private String userName; field in class:PasswordAuthentication
52 * @param userName the user name
55 public PasswordAuthentication(String userName, char[] password) { argument
56 this.userName = userName;
66 return userName;
H A DSocksSocketImpl.java166 String userName;
178 userName = pw.getUserName();
181 userName = GetPropertyAction.privilegedGetProperty("user.name");
183 if (userName == null)
186 out.write(userName.length());
188 out.write(userName.getBytes("ISO-8859-1"));
282 String userName = getUserName();
284 out.write(userName.getBytes("ISO-8859-1"));
617 String userName = getUserName();
619 out.write(userName
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/standard/
H A DJobOriginatingUserName.java64 * @param userName user name
68 * @throws NullPointerException if {@code userName} is {@code null}
70 public JobOriginatingUserName(String userName, Locale locale) { argument
71 super (userName, locale);
H A DRequestingUserName.java66 * @param userName user name
70 * @throws NullPointerException if {@code userName} is {@code null}
72 public RequestingUserName(String userName, Locale locale) { argument
73 super (userName, locale);
/openjdk10/jdk/src/jdk.security.auth/share/classes/com/sun/security/auth/module/
H A DNTSystem.java38 private String userName; field in class:NTSystem
69 return userName;
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalVmManager.java47 private String userName; // user name for monitored jvm field in class:LocalVmManager
78 this.userName = user;
80 if (userName == null) {
92 tmpdir = new File(PerfDataFile.getTempDirectory(userName));
141 if (userName == null) {
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DProxyClient.java63 private String userName = null; field in class:ProxyClient
110 String userName, String password) throws IOException {
111 this.connectionName = getConnectionName(hostName, port, userName);
123 setParameters(url, userName, password);
132 String userName, String password) throws IOException {
134 this.connectionName = getConnectionName(url, userName);
136 setParameters(new JMXServiceURL(url), userName, password);
145 private void setParameters(JMXServiceURL url, String userName, String password) { argument
149 this.userName = userName;
109 ProxyClient(String hostName, int port, String userName, String password) argument
131 ProxyClient(String url, String userName, String password) argument
438 getProxyClient(String url, String userName, String password) argument
450 getConnectionName(String url, String userName) argument
459 getCacheKey(String url, String userName, String password) argument
469 getProxyClient(String hostName, int port, String userName, String password) argument
481 getConnectionName(String hostName, int port, String userName) argument
491 getCacheKey(String hostName, int port, String userName, String password) argument
[all...]
H A DJConsole.java471 String userName, String password) {
472 addHost(hostName, port, userName, password, false);
497 final String userName,
503 addProxyClient(ProxyClient.getProxyClient(url, userName, password),
506 failed(ex, url, userName, password);
508 failed(ex, url, userName, password);
510 failed(ex, url, userName, password);
519 final String userName, final String password,
525 userName, password),
532 userName, passwor
470 addHost(String hostName, int port, String userName, String password) argument
496 addUrl(final String url, final String userName, final String password, final boolean tile) argument
518 addHost(final String hostName, final int port, final String userName, final String password, final boolean tile) argument
562 failed(final Exception ex, final String url, final String userName, final String password) argument
609 showConnectDialog(String url, String hostName, int port, String userName, String password, String msg) argument
[all...]
H A DConnectDialog.java315 String userName = userNameTF.getText().trim();
316 userName = userName.equals("") ? null : userName;
322 jConsole.addUrl(url, userName, password, false);
335 jConsole.addHost(host, p, userName, password);
458 String userName,
470 userNameTF.setText((userName != null) ? userName : "");
455 setConnectionParameters(String url, String host, int port, String userName, String password, String msg) argument
H A DVMPanel.java52 private String userName; field in class:VMPanel
100 this.userName = proxyClient.getUserName();
620 return userName;
/openjdk10/jdk/test/java/security/AccessController/
H A DDoPrivAccompliceTest.java100 String userName = System.getProperty("user.name");
106 .shouldContain(userName)
113 .shouldNotContain(userName)
/openjdk10/jdk/test/javax/security/auth/login/LoginContext/
H A DDynamicConfigurationTest.java132 String userName; field in class:MyCallbackHandler
145 userName = username;
155 nc.setName(userName);
H A DSmartLoginModule.java71 public SmartLoginModule(String userName, char[] password, String header) { argument
72 myUsername = userName;
/openjdk10/test/lib/jdk/test/lib/
H A DPlatform.java42 private static final String userName = System.getProperty("user.name"); field in class:Platform
256 if (!userName.equals("root") && yama_scope != '0') {
269 return userName.equals("root");
/openjdk10/jdk/src/jdk.security.auth/windows/native/libjaas/
H A Dnt.c39 BOOL getUser(HANDLE tokenHandle, LPTSTR *userName,
78 LPTSTR userName = NULL; // user name local
108 (tokenHandle, &userName, &domainName, &userSid, &domainSid) == FALSE) {
128 fid = (*env)->GetFieldID(env, cls, "userName", "Ljava/lang/String;");
131 throwIllegalArgumentException(env, "invalid field: userName");
134 jstr = (*env)->NewStringUTF(env, userName);
241 if (userName != NULL) {
242 HeapFree(GetProcessHeap(), 0, userName); local
301 BOOL getUser(HANDLE tokenHandle, LPTSTR *userName, argument
340 // get userName
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DPSStreamPrintJob.java448 String userName = "";
450 userName = System.getProperty("user.name");
454 if (userName == null || userName.equals("")) {
465 jobAttrSet.add(new JobOriginatingUserName(userName, null));
/openjdk10/jdk/test/java/net/Authenticator/
H A DB6870935.java146 boolean isRequest, String userName, char[] password,
158 A1 = userName + ":" + realm + ":";
145 computeDigest( boolean isRequest, String userName, char[] password, String realm, String connMethod, String requestURI, String nonceString, String cnonce, String ncValue ) argument
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DDigestTest.java132 boolean isRequest, String userName, char[] password,
144 A1 = userName + ":" + realm + ":";
131 computeDigest( boolean isRequest, String userName, char[] password, String realm, String connMethod, String requestURI, String nonceString, String cnonce, String ncValue ) argument
/openjdk10/jdk/src/java.desktop/windows/classes/sun/print/
H A DWin32PrintJob.java619 String userName = "";
621 userName = System.getProperty("user.name");
625 if (userName == null || userName.equals("")) {
636 jobAttrSet.add(new JobOriginatingUserName(userName, null));
H A DWin32PrintService.java1217 String userName = "";
1219 userName = System.getProperty("user.name", "");
1222 return new RequestingUserName(userName, null);
1296 String userName = "";
1298 userName = System.getProperty("user.name", "");
1301 return new RequestingUserName(userName, null);
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DDigestAuthentication.java464 boolean isRequest, String userName, char[] password,
479 String s = userName + ":" + realm + ":";
486 A1 = userName + ":" + realm + ":";
463 computeDigest( boolean isRequest, String userName, char[] password, String realm, String connMethod, String requestURI, String nonceString, String cnonce, String ncValue ) argument
/openjdk10/jdk/src/java.desktop/unix/classes/sun/print/
H A DUnixPrintService.java715 String userName = "";
717 userName = System.getProperty("user.name", "");
720 return new RequestingUserName(userName, null);
793 String userName = "";
795 userName = System.getProperty("user.name", "");
798 return new RequestingUserName(userName, null);
H A DUnixPrintJob.java730 String userName = "";
732 userName = System.getProperty("user.name");
736 if (userName == null || userName.equals("")) {
747 jobAttrSet.add(new JobOriginatingUserName(userName, null));
H A DIPPPrintService.java749 String userName = "";
751 userName = System.getProperty("user.name", "");
754 return new RequestingUserName(userName, null);
1542 String userName = "";
1544 userName = System.getProperty("user.name", "");
1547 return new RequestingUserName(userName, null);
/openjdk10/common/conf/
H A Djib-profiles.js1154 var userName = java.lang.System.getProperty("user.name");
1155 return userName + "." + topdir;

Completed in 216 milliseconds

12