async existsRole(name: string): boolean {
    const role = await this.getRole(name);
    return !!role;
  }