Called when the server indicates that authentication was successful. Depending on the authentication mechanism, `token` may be :const:`None` or a string.
(self, token)
| 106 | raise NotImplementedError() |
| 107 | |
| 108 | def on_authentication_success(self, token): |
| 109 | """ |
| 110 | Called when the server indicates that authentication was successful. |
| 111 | Depending on the authentication mechanism, `token` may be :const:`None` |
| 112 | or a string. |
| 113 | """ |
| 114 | pass |
| 115 | |
| 116 | |
| 117 | class PlainTextAuthProvider(AuthProvider): |
no outgoing calls
no test coverage detected