Searched refs:password (Results 1 - 25 of 32) sorted by relevance

12

/javamail/mail/src/main/java/javax/mail/
H A DPasswordAuthentication.java46 * Authenticator. It is simply a repository for a user name and a password.
58 private final String password; field in class:PasswordAuthentication
63 * @param password The user's password
65 public PasswordAuthentication(String userName, String password) { argument
67 this.password = password;
78 * @return the password
81 return password;
H A DService.java116 String password = null;
127 password = url.getPassword();
156 url = new URLName(protocol, host, port, file, user, password);
200 * authentication scheme that requires a username and password. <p>
208 * for the host, user, and password from the session, from the
220 * the connection, including the password. <p>
225 * If the password passed in is null and this is the first successful
226 * connection to this service, the user name and the password
230 * a particular Service object instance). The password is saved using the
232 * password passe
244 connect(String host, String user, String password) argument
265 connect(String user, String password) argument
284 connect(String host, int port, String user, String password) argument
451 protocolConnect(String host, int port, String user, String password) argument
[all...]
H A DMailSessionDefinition.java111 * @return the password
113 String password() default "";
H A DURLName.java84 * The password to use when connecting.
86 private String password; field in class:URLName
135 * host, port number, file, username, and password. Specifying a port
144 * @param password the password
152 String password
167 this.password = doEncode ? encode(password) : password;
181 * information (protocol, host, port, file, username, password)
[all...]
H A DTransport.java156 * Use the specified user name and password to authenticate to
161 * @param password this user's password
171 String user, String password) throws MessagingException {
174 send0(msg, msg.getAllRecipients(), user, password);
183 * Use the specified user name and password to authenticate to
189 * @param password this user's password
199 String user, String password) throws MessagingException {
202 send0(msg, addresses, user, password);
170 send(Message msg, String user, String password) argument
198 send(Message msg, Address[] addresses, String user, String password) argument
206 send0(Message msg, Address[] addresses, String user, String password) argument
[all...]
/javamail/webapp/src/main/java/demo/
H A DMailUserBean.java45 private String password; field in class:MailUserBean
97 * password getter method.
100 return password;
104 * password setter method.
106 public void setPassword(String password) { argument
107 this.password = password;
190 public void login(String hostname, String username, String password) argument
195 this.password = password;
[all...]
/javamail/mbox/src/main/java/com/sun/mail/remote/
H A DRemoteStore.java56 protected String host, user, password; field in class:RemoteStore
75 public void connect(String host, int port, String user, String password) argument
80 this.password = password;
97 remoteStore.connect(host, port, user, password);
104 super.connect(host, port, user, password);
/javamail/client/src/main/java/
H A DSimpleAuthenticator.java38 * Simple Authenticator for requesting password information.
48 String password; field in class:SimpleAuthenticator
125 JPasswordField password = new JPasswordField("", 20);
126 d.add(constrain(password, gb, c));
129 password.requestFocus();
138 password.getText());
/javamail/mail/src/oldtest/java/javax/mail/internet/socketfactory/
H A Dsocketfactorytest.java52 String user = null, password = null;
61 password = argv[++optind];
94 t.connect(mailhost, user, password);
116 t.connect(mailhost, user, password);
137 t.connect(mailhost, user, password);
161 t.connect(mailhost, user, password);
185 t.connect(mailhost, user, password);
206 t.connect(mailhost, user, password);
231 t.connect(mailhost, user, password);
255 t.connect(mailhost, user, password);
[all...]
/javamail/gimap/src/main/java/com/sun/mail/gimap/
H A DGmailStore.java88 String user, String password)
92 return super.protocolConnect(host, pport, user, password);
87 protocolConnect(String host, int pport, String user, String password) argument
/javamail/demo/src/main/java/
H A Dfolderlist.java49 static String password = null; field in class:folderlist
67 password = argv[++optind];
83 "Usage: folderlist [-T protocol] [-H host] [-U user] [-P password] [-L url]");
115 if (host != null || user != null || password != null)
116 store.connect(host, user, password);
H A Dmover.java44 static String password = null; field in class:mover
61 } else if (argv[optind].equals("-P")) { // password
62 password = argv[++optind];
76 "Usage: mover [-T protocol] [-H host] [-U user] [-P password] [-L url] [-v]");
115 if (host != null || user != null || password != null)
116 store.connect(host, user, password);
H A Dnamespace.java48 static String password = null; field in class:namespace
66 password = argv[++optind];
82 "\t[-P password] [-u other-user] [-D]");
110 if (host != null || user != null || password != null)
111 store.connect(host, port, user, password);
H A Dmsgsend.java57 String protocol = null, host = null, user = null, password = null;
75 password = argv[++optind];
209 if (host != null || user != null || password != null)
210 store.connect(host, user, password);
H A Dsendhtml.java63 String protocol = null, host = null, user = null, password = null;
78 password = argv[++optind];
184 if (host != null || user != null || password != null)
185 store.connect(host, user, password);
H A Dsmtpsend.java84 String protocol = null, host = null, user = null, password = null;
105 password = argv[++optind];
254 t.connect(mailhost, user, password);
284 if (host != null || user != null || password != null)
285 store.connect(host, user, password);
H A Dsearch.java51 static String password = null; field in class:search
73 password = argv[++optind];
96 "[-U user] [-P password] [-f mailbox] " +
132 if (host != null || user != null || password != null)
133 store.connect(host, user, password);
H A Duidmsgshow.java52 static String password = null; field in class:uidmsgshow
69 password = argv[++optind];
80 System.out.println("Usage: uidmsgshow [-L url] [-T protocol] [-H host] [-U user] [-P password] [-f mailbox] [uid] [-v]");
111 if (host != null || user != null || password != null)
112 store.connect(host, user, password);
/javamail/mail/src/main/java/com/sun/mail/auth/
H A DNtlm.java82 private String password; field in class:Ntlm
124 * @param password the password
128 String password, MailLogger logger) {
143 this.password = password;
217 pwb = password.toUpperCase(Locale.ENGLISH).getBytes("iso-8859-1");
223 int len = password.length();
247 pw = password.getBytes("UnicodeLittleUnmarked");
127 Ntlm(String ntdomain, String hostname, String username, String password, MailLogger logger) argument
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DIMAPStore.java206 protected String password; field in class:IMAPStore
244 private boolean debugpassword; // include password in debug output?
456 "mail.debug.auth.password", false);
647 * The <code>host</code>, <code>user</code>, and <code>password</code>
649 * being used does not require a password, an empty string or other
650 * suitable dummy password should be used.
653 protocolConnect(String host, int pport, String user, String password) argument
658 // check for non-null values of host, password, user
659 if (host == null || password == null || user == null) {
664 ", password
853 authenticate(IMAPProtocol p, String authzid, String user, String password) argument
982 setPassword(String password) argument
2254 tracePassword(String password) argument
[all...]
/javamail/demo/src/main/java/internal/
H A DTtyAuthenticator.java39 * A simple Authenticator that prompts for the user name and password on stdin.
78 String password = getpw("Password");
82 return new PasswordAuthentication(userName, password);
H A Dfoldersplit.java48 static String password = null; field in class:foldersplit
68 password = argv[++optind];
88 "\t[-P password] [-v] [-D] folder ...");
116 if (host != null || user != null || password != null)
117 store.connect(host, port, user, password);
H A Dmsgsperweek.java58 static String password = "1javamail1"; field in class:msgsperweek
77 password = argv[++optind];
91 "Usage: msgperweek [-L url] [-T protocol] [-H host] [-U user] [-P password]\n"+
127 if (host != null || user != null || password != null)
128 store.connect(host, user, password);
H A Danswer.java67 static String password = "1javamail1"; field in class:answer
86 password = argv[++optind];
103 "Usage: answer [-L url] [-T protocol] [-H host] [-U user] [-P password]\n" +
132 if (host != null || user != null || password != null)
133 store.connect(host, user, password);
/javamail/mail/src/oldtest/java/javax/mail/internet/
H A Dmessagecachetest.java59 static String password = null; field in class:messagecachetest
79 password = argv[++optind];
97 "\t[-P password] [-f mailbox] [msgnum] [-v] [-D]");
128 if (host != null || user != null || password != null)
129 store.connect(host, port, user, password);

Completed in 223 milliseconds

12