package fr.openwide.core.jpa.security.business.authority.dao; import fr.openwide.core.jpa.business.generic.dao.IGenericEntityDao; import fr.openwide.core.jpa.security.business.authority.model.Authority; public interface IAuthorityDao extends IGenericEntityDao<Long, Authority> { Authority getByName(String name); }