library/src/main/java/org/apache/fineract/cn/anubis/security/TenantAuthenticator.java [107:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Set<ApplicationPermission> translatePermissions(
      @Nonnull final List<TokenPermission> tokenPermissions)
  {
    return tokenPermissions.stream()
            .filter(x -> x.getPath().startsWith(applicationNameWithVersion))
            .flatMap(this::getAppPermissionFromTokenPermission)
            .collect(Collectors.toSet());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



library/src/main/java/org/apache/fineract/cn/anubis/security/FinKeycloakTenantAuthenticator.java [117:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 private Set<ApplicationPermission> translatePermissions(
         @Nonnull final List<TokenPermission> tokenPermissions)
 {
  return tokenPermissions.stream()
          .filter(x -> x.getPath().startsWith(applicationNameWithVersion))
          .flatMap(this::getAppPermissionFromTokenPermission)
          .collect(Collectors.toSet());
 }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



