()
| 47 | ssoProviders: Map<string, SSOBase> = new Map() |
| 48 | |
| 49 | public static async getInstance(): Promise<IdentityManager> { |
| 50 | if (!IdentityManager.instance) { |
| 51 | IdentityManager.instance = new IdentityManager() |
| 52 | await IdentityManager.instance.initialize() |
| 53 | } |
| 54 | return IdentityManager.instance |
| 55 | } |
| 56 | |
| 57 | public async initialize() { |
| 58 | await this._validateLicenseKey() |
no test coverage detected