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

io.mosip.admin.bulkdataupload.repositories.ModuleRepository Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.admin.bulkdataupload.repositories;

import java.util.List;

import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;

import io.mosip.admin.bulkdataupload.entity.ModuleDetail;
import io.mosip.kernel.core.dataaccess.spi.repository.BaseRepository;

/**
 * 
 * @author Megha Tanga
 * @since 1.0.0
 *
 */
@Repository
public interface ModuleRepository extends BaseRepository {

	/**
	 * This method trigger query to fetch the Module detail for the given Module id
	 * and language code.
	 * 
	 * @param id
	 *            Module id provided by user
	 * @param langCode
	 *            language code provided by user
	 * @return List Module fetched from database
	 */

	@Query("FROM ModuleDetail t where t.id = ?1 and t.langCode = ?2 and (t.isDeleted is null or t.isDeleted = false) and t.isActive = true")
	List findAllByIdAndLangCodeAndIsDeletedFalseorIsDeletedIsNull(String id, String langCode);

	/**
	 * This method trigger query to fetch the Module detail for the given language
	 * code.
	 * 
	 * @param langCode
	 *            langCode provided by user
	 * 
	 * @return List Module fetched from database
	 */
	@Query("FROM ModuleDetail t where t.langCode = ?1 and (t.isDeleted is null or t.isDeleted = false) and t.isActive = true")
	List findAllByLangCodeAndIsDeletedFalseOrIsDeletedIsNull(String langCode);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy