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

io.mosip.preregistration.batchjob.repository.DocumentRespository Maven / Gradle / Ivy

There is a newer version: 1.3.0-beta.1
Show newest version
package io.mosip.preregistration.batchjob.repository;

import java.util.List;

import org.springframework.stereotype.Repository;

import io.mosip.kernel.core.dataaccess.spi.repository.BaseRepository;
import io.mosip.preregistration.core.common.entity.DocumentEntity;

/**
 * @author Kishan Rathore
 * @since 1.0.0
 *
 */
@Repository("documentRespository")
public interface DocumentRespository extends BaseRepository {

	/**
	 * @param preregId
	 * @return document entity based on given preId
	 */
	public List findByDemographicEntityPreRegistrationId(String preId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy