| 566 | namespace authentication { |
| 567 | |
| 568 | Future<Nothing> setAuthenticator( |
| 569 | const string& realm, |
| 570 | Owned<Authenticator> authenticator) |
| 571 | { |
| 572 | process::initialize(); |
| 573 | |
| 574 | return authenticator_manager->setAuthenticator(realm, authenticator); |
| 575 | } |
| 576 | |
| 577 | |
| 578 | Future<Nothing> unsetAuthenticator(const string& realm) |