1
0

findByRoleName

This commit is contained in:
Michael Hoennig
2022-08-12 18:00:15 +02:00
parent 41d3b678c4
commit 8529ec9949
2 changed files with 37 additions and 12 deletions

View File

@ -13,4 +13,6 @@ public interface RbacRoleRepository extends Repository<RbacRoleEntity, UUID> {
* @return all entities
*/
List<RbacRoleEntity> findAll();
RbacRoleEntity findByRoleName(String roleName);
}