| 95 | { |
| 96 | protected: |
| 97 | Future<Nothing> setAuthenticator( |
| 98 | const string& realm, |
| 99 | process::Owned<Authenticator> authenticator) |
| 100 | { |
| 101 | realms.insert(realm); |
| 102 | |
| 103 | return authentication::setAuthenticator(realm, authenticator); |
| 104 | } |
| 105 | |
| 106 | void TearDown() override |
| 107 | { |
nothing calls this directly
no test coverage detected