| 74 | |
| 75 | |
| 76 | BasicAuthenticatorProcess::BasicAuthenticatorProcess( |
| 77 | const string& realm, |
| 78 | const hashmap<string, string>& credentials) |
| 79 | : ProcessBase(ID::generate("__basic_authenticator__")), |
| 80 | realm_(realm), |
| 81 | credentials_(credentials) {} |
| 82 | |
| 83 | |
| 84 | Future<AuthenticationResult> BasicAuthenticatorProcess::authenticate( |
nothing calls this directly
no test coverage detected