Adding Authentication Connector plugin system
[osm/NBI.git] / osm_nbi / authconn_keystone.py
1 # -*- coding: utf-8 -*-
2
3 """
4 AuthconnKeystone implements implements the connector for
5 Openstack Keystone and leverages the RBAC model, to bring
6 it for OSM.
7 """
8
9 __author__ = "Eduardo Sousa <eduardosousa@av.it.pt>"
10 __date__ = "$27-jul-2018 23:59:59$"
11
12 from authconn import Authconn
13
14
15 class AuthconnKeystone(Authconn):
16 def __init__(self, config):
17 Authconn.__init__(self, config)