
org.marketcetera.admin.dao.PersistentRoleDao Maven / Gradle / Ivy
The newest version!
package org.marketcetera.admin.dao;
import org.marketcetera.admin.Role;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.querydsl.QuerydslPredicateExecutor;
/* $License$ */
/**
* Provides datastore access to {@link Role} objects.
*
* @author Colin DuPlantis
* @version $Id$
* @since 1.0.1
*/
public interface PersistentRoleDao
extends JpaRepository,QuerydslPredicateExecutor
{
/**
* Gets the role with the given name.
*
* @param inName a String
value
* @return a PersistentRole
value or null
*/
PersistentRole findByName(String inName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy