Searched defs:login (Results 26 - 34 of 34) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSUtil.java48 import javax.security.auth.login.LoginContext;
49 import javax.security.auth.login.LoginException;
70 "auth.login.defaultCallbackHandler";
226 * Authenticate using the login module from the specified
233 public static Subject login(GSSCaller caller, Oid mech) throws LoginException { method in class:GSSUtil
250 // New instance of LoginConfigImpl must be created for each login,
255 lc.login();
262 * Kerberos v5 mechanism would do a JAAS login on behalf of the
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DJndiLoginModule.java30 import javax.security.auth.login.*;
54 * two options must be specified in the login <code>Configuration</code>
121 * using "javax.security.auth.login.name" and
122 * "javax.security.auth.login.password" as the respective
130 * using "javax.security.auth.login.name" and
131 * "javax.security.auth.login.password" as the respective
141 * shared state, using "javax.security.auth.login.name" and
142 * "javax.security.auth.login.password" as the respective
149 * after both phases of authentication (login and commit)
200 private static final String NAME = "javax.security.auth.login
259 public boolean login() throws LoginException { method in class:JndiLoginModule
[all...]
H A DKrb5LoginModule.java36 import javax.security.auth.login.*;
81 * This property is checked during login. If this property is not set, then
93 * to be refreshed before the <code>login</code> method is called.</dd>
184 * using "javax.security.auth.login.name" and
185 * "javax.security.auth.login.password" as the respective
193 * state using "javax.security.auth.login.name" and
194 * "javax.security.auth.login.password" as the respective
206 * "javax.security.auth.login.name" and
207 * "javax.security.auth.login.password" as the respective
215 * (login an
517 public boolean login() throws LoginException { method in class:Krb5LoginModule
[all...]
H A DLdapLoginModule.java47 import javax.security.auth.login.*;
99 * module's login {@link Configuration}:
171 * from the module's shared state, using "javax.security.auth.login.name"
172 * and "javax.security.auth.login.password" as the respective keys. The
179 * from the module's shared state, using "javax.security.auth.login.name"
180 * and "javax.security.auth.login.password" as the respective keys. The
191 * "javax.security.auth.login.name" and
192 * "javax.security.auth.login.password" as the respective keys. This is
199 * (login and commit) have completed.</dd>
272 * If the application creates a login contex
500 public boolean login() throws LoginException { method in class:LdapLoginModule
[all...]
H A DKeyStoreLoginModule.java66 import javax.security.auth.login.FailedLoginException;
67 import javax.security.auth.login.LoginException;
74 * Provides a JAAS login module that prompts for a key store alias and
107 * <dd> The alias in the key store to login as. Required when no callback
201 * @param options options specified in the login
278 public boolean login() throws LoginException { method in class:KeyStoreLoginModule
282 throw new LoginException("The login module is not initialized");
730 * <code>login</code> method), then this method associates a
745 * @return true if this LoginModule's own login and commit
753 throw new LoginException("The login modul
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java37 import javax.security.auth.login.LoginException;
38 import javax.security.auth.login.FailedLoginException;
1072 * @exception LoginException if the login operation fails
1078 public void login(Subject subject, CallbackHandler handler) method in class:SunPKCS11
1086 debug.println("checking login permission");
1096 // see if a login is required
1100 debug.println("login operation not required for token - " +
1101 "ignoring login request");
1117 // ignore - fall thru and attempt login
1161 // perform token login
[all...]
H A DP11KeyStore.java65 import javax.security.auth.login.LoginException;
230 * callback handler for passing password to Provider.login method
741 * password is given, of if the token login operation failed
762 login(null);
764 login(new PasswordCallbackHandler(password));
809 * is non-null, or if the token login operation fails
855 login(handler);
872 private void login(CallbackHandler handler) throws LoginException { method in class:P11KeyStore
874 token.provider.login(null, handler);
886 token.provider.login(nul
[all...]
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java50 * cl.connect("ftp.gnu.org").login("anonymous", "john.doe@mydomain.com".toCharArray())).changeDirectory("pub/gnu");
271 * @throws FtpProtocolException if the login was refused by the server
273 public abstract FtpClient login(String user, char[] password) throws FtpProtocolException, IOException; method in class:FtpClient
284 * @throws FtpProtocolException if the login was refused by the server
286 public abstract FtpClient login(String user, char[] password, String account) throws FtpProtocolException, IOException; method in class:FtpClient
303 * @return {@code true} if the client has already completed a login.
862 * but before calling {@link #login(java.lang.String, char[]) }.</p>
897 * login or accounting information.
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java1040 * @return <code>true</code> if the login was successful.
1043 public sun.net.ftp.FtpClient login(String user, char[] password) throws sun.net.ftp.FtpProtocolException, IOException { method in class:FtpClient
1078 * @return <code>true</code> if the login was successful.
1081 public sun.net.ftp.FtpClient login(String user, char[] password, String account) throws sun.net.ftp.FtpProtocolException, IOException { method in class:FtpClient
1092 * Checks for "332 Need account for login." answer
1133 * @return <code>true</code> if the client has already completed a login.
2131 * login or accounting information.

Completed in 70 milliseconds

12