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

io.mosip.kernel.masterdata.service.BiometricAttributeService Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.service;

import java.util.List;

import io.mosip.kernel.masterdata.dto.BiometricAttributeDto;
import io.mosip.kernel.masterdata.entity.id.CodeAndLanguageCodeID;

/**
 * 
 * @author Uday
 * @since 1.0.0
 *
 */

public interface BiometricAttributeService {

	/**
	 * 
	 * Method to fetch list of biometricAttribute for given biometric type code and
	 * language code
	 * 
	 * @param biometricTypeCode input as biometricTypeCode
	 * @param langCode          input as langCode
	 * @return List of BiometricAttributeDto
	 */
	List getBiometricAttribute(String biometricTypeCode, String langCode);

	/**
	 * Function to save biometricAttribute Details to the Database
	 * 
	 * @param biometricAttribute biometric attribute dto
	 * 
	 * @return {@link CodeAndLanguageCodeID}
	 */
	CodeAndLanguageCodeID createBiometricAttribute(BiometricAttributeDto biometricAttribute);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy