1
1
/*
2
- * Copyright (c) 1998, 2015 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1998, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
package javax .security .auth .spi ;
27
27
28
28
import javax .security .auth .Subject ;
29
- import javax .security .auth .AuthPermission ;
30
29
import javax .security .auth .callback .*;
31
30
import javax .security .auth .login .*;
32
31
import java .util .Map ;
50
49
* a {@code Subject}, a {@code CallbackHandler}, shared
51
50
* {@code LoginModule} state, and LoginModule-specific options.
52
51
*
53
- * The {@code Subject} represents the
52
+ * <p> The {@code Subject} represents the
54
53
* {@code Subject} currently being authenticated and is updated
55
54
* with relevant Credentials if authentication succeeds.
56
55
* LoginModules use the {@code CallbackHandler} to
57
56
* communicate with users. The {@code CallbackHandler} may be
58
57
* used to prompt for usernames and passwords, for example.
59
- * Note that the {@code CallbackHandler} may be null. LoginModules
58
+ * Note that the {@code CallbackHandler} may be {@code null} . LoginModules
60
59
* which absolutely require a {@code CallbackHandler} to authenticate
61
60
* the {@code Subject} may throw a {@code LoginException}.
62
61
* LoginModules optionally use the shared state to share information
129
128
public interface LoginModule {
130
129
131
130
/**
132
- * Initialize this LoginModule.
131
+ * Initialize this {@code LoginModule} .
133
132
*
134
133
* <p> This method is called by the {@code LoginContext}
135
134
* after this {@code LoginModule} has been instantiated.
@@ -163,12 +162,12 @@ void initialize(Subject subject, CallbackHandler callbackHandler,
163
162
* {@code Subject} information such
164
163
* as a username and password and then attempt to verify the password.
165
164
* This method saves the result of the authentication attempt
166
- * as private state within the LoginModule.
165
+ * as private state within the {@code LoginModule} .
167
166
*
168
167
* @exception LoginException if the authentication fails
169
168
*
170
- * @return true if the authentication succeeded, or false if this
171
- * {@code LoginModule} should be ignored.
169
+ * @return {@code true} if the authentication succeeded, or {@code false}
170
+ * if this {@code LoginModule} should be ignored.
172
171
*/
173
172
boolean login () throws LoginException ;
174
173
@@ -190,8 +189,8 @@ void initialize(Subject subject, CallbackHandler callbackHandler,
190
189
*
191
190
* @exception LoginException if the commit fails
192
191
*
193
- * @return true if this method succeeded, or false if this
194
- * {@code LoginModule} should be ignored.
192
+ * @return {@code true} if this method succeeded, or {@code false}
193
+ * if this {@code LoginModule} should be ignored.
195
194
*/
196
195
boolean commit () throws LoginException ;
197
196
@@ -210,8 +209,8 @@ void initialize(Subject subject, CallbackHandler callbackHandler,
210
209
*
211
210
* @exception LoginException if the abort fails
212
211
*
213
- * @return true if this method succeeded, or false if this
214
- * {@code LoginModule} should be ignored.
212
+ * @return {@code true} if this method succeeded, or {@code false}
213
+ * if this {@code LoginModule} should be ignored.
215
214
*/
216
215
boolean abort () throws LoginException ;
217
216
@@ -223,8 +222,15 @@ void initialize(Subject subject, CallbackHandler callbackHandler,
223
222
*
224
223
* @exception LoginException if the logout fails
225
224
*
226
- * @return true if this method succeeded, or false if this
227
- * {@code LoginModule} should be ignored.
225
+ * @return {@code true} if this method succeeded, or {@code false}
226
+ * if this {@code LoginModule} should be ignored.
227
+ *
228
+ * @implSpec Implementations should check if a variable is {@code null}
229
+ * before removing it from the Principals or Credentials set
230
+ * of a {@code Subject}, otherwise a {@code NullPointerException}
231
+ * will be thrown as these sets {@linkplain Subject#Subject()
232
+ * prohibit null elements}. This is especially important if
233
+ * this method is called after a login failure.
228
234
*/
229
235
boolean logout () throws LoginException ;
230
236
}
0 commit comments