| 47 | { |
| 48 | protected: |
| 49 | Future<Nothing> setAuthenticator( |
| 50 | const string& realm, |
| 51 | process::Owned<Authenticator> authenticator) |
| 52 | { |
| 53 | realms.insert(realm); |
| 54 | |
| 55 | return authentication::setAuthenticator(realm, authenticator); |
| 56 | } |
| 57 | |
| 58 | void TearDown() override |
| 59 | { |
nothing calls this directly
no test coverage detected