interface IUAUserManager {
    getIdentitiesForRole(role: NodeId): IdentityMappingRuleType[];
    getUserRoles(user: string): NodeId[];
    isValidUser(session: ServerSession, username: string, password: string): Promise<boolean>;
}

Hierarchy (view full)

Implemented by

Methods