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

  • retrieve the roles of the given user

    Parameters

    • user: string

    Returns NodeId[]

    semicolon separated list of roles

  • Parameters

    Returns Promise<boolean>