Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</developers>

<properties>
<gridsuite-dependencies.version>44.0.0</gridsuite-dependencies.version>
<gridsuite-dependencies.version>44.1.0-SNAPSHOT</gridsuite-dependencies.version>
<liquibase-hibernate-package>org.gridsuite.useradmin.server</liquibase-hibernate-package>
<shedlock.version>6.4.0</shedlock.version>
<sonar.organization>gridsuite</sonar.organization>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
@Repository
public interface UserGroupRepository extends JpaRepository<GroupInfosEntity, UUID> {
long deleteAllByNameIn(@NonNull List<String> names);
Long deleteAllByNameIn(@NonNull List<String> names);

Optional<GroupInfosEntity> findByName(@NonNull String name);
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public interface UserInfosRepository extends JpaRepository<UserInfosEntity, UUID

Optional<UserInfosEntity> findBySub(@NonNull String sub);

long deleteBySub(@NonNull String sub);
Long deleteBySub(@NonNull String sub);

long deleteAllBySubIn(@NonNull Collection<String> subs);
Long deleteAllBySubIn(@NonNull Collection<String> subs);
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
@Repository
public interface UserProfileRepository extends JpaRepository<UserProfileEntity, UUID> {
long deleteAllByNameIn(@NonNull List<String> names);
Long deleteAllByNameIn(@NonNull List<String> names);

Optional<UserProfileEntity> findByName(@NonNull String name);
}
Loading