| 191 | |
| 192 | |
| 193 | static void addAuthorizerModules(Modules* modules) |
| 194 | { |
| 195 | CHECK_NOTNULL(modules); |
| 196 | |
| 197 | // Now add our test authorizer module. |
| 198 | Modules::Library* library = modules->add_libraries(); |
| 199 | library->set_file(getModulePath("testauthorizer")); |
| 200 | |
| 201 | // To add a new module from this library, create a new ModuleID enum |
| 202 | // and tie it with a module name. |
| 203 | addModule( |
| 204 | library, TestLocalAuthorizer, "org_apache_mesos_TestLocalAuthorizer"); |
| 205 | } |
| 206 | |
| 207 | |
| 208 | static void addHttpAuthenticatorModules(Modules* modules) |
no test coverage detected