Skip to content

Commit

Permalink
fix: fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tamassoltesz committed Nov 26, 2024
1 parent 8f6ba14 commit d4a125c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ int deleteAllPermissionsForRole_Transaction(AppIdentifier appIdentifier, Transac
boolean doesRoleExist_Transaction(AppIdentifier appIdentifier, TransactionConnection con, String role)
throws StorageQueryException;

List<Boolean> doesMultipleRoleExist_Transaction(AppIdentifier appIdentifier, TransactionConnection con, List<String> roles)
List<String> doesMultipleRoleExist_Transaction(AppIdentifier appIdentifier, TransactionConnection con, List<String> roles)
throws StorageQueryException;

void deleteAllRolesForUser_Transaction(TransactionConnection con, AppIdentifier appIdentifier, String userId)
throws StorageQueryException;

void addRolesToUsers_Transaction(TransactionConnection connection, Map<TenantIdentifier, Map<String, String>> rolesToUserByTenants)
void addRolesToUsers_Transaction(TransactionConnection connection, Map<TenantIdentifier, Map<String, List<String>>> rolesToUserByTenants)
throws StorageQueryException;
}

0 comments on commit d4a125c

Please sign in to comment.