All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.registration.repositories.ScreenAuthorizationRepository Maven / Gradle / Ivy

package io.mosip.registration.repositories;

import java.util.List;
import java.util.Set;

import io.mosip.kernel.core.dataaccess.spi.repository.BaseRepository;
import io.mosip.registration.dao.ScreenAuthorizationDetails;
import io.mosip.registration.entity.ScreenAuthorization;
import io.mosip.registration.entity.id.ScreenAuthorizationId;

/**
 * The repository interface for {@link ScreenAuthorization} entity
 * 
 * @author Sravya Surampalli
 * @since 1.0.0
 *
 */

public interface ScreenAuthorizationRepository
		extends BaseRepository {

	/**
	 * This method returns the list of {@link ScreenAuthorizationDetails} based
	 * on role code
	 * 
	 * @param roleCode
	 *            the roleCode
	 * @return the list of {@link ScreenAuthorizationDetails}
	 */
	Set findByScreenAuthorizationIdRoleCodeInAndIsPermittedTrueAndIsActiveTrue(List roleCode);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy