(self)
| 57 | validate = TokenValidationController() |
| 58 | |
| 59 | def __init__(self): |
| 60 | try: |
| 61 | self.handler = HANDLER_MAPPINGS[cfg.CONF.auth.mode]() |
| 62 | except KeyError: |
| 63 | raise ParamException("%s is not a valid auth mode" % cfg.CONF.auth.mode) |
| 64 | |
| 65 | def post(self, request, **kwargs): |
| 66 | headers = {} |
nothing calls this directly
no test coverage detected