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

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

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

import io.mosip.kernel.masterdata.dto.getresponse.ExceptionalHolidayResponseDto;
import io.mosip.kernel.masterdata.dto.getresponse.HolidayResponseDto;
import io.mosip.kernel.masterdata.exception.DataNotFoundException;
import io.mosip.kernel.masterdata.exception.MasterDataServiceException;

/**
 * @author Kishan Rathore
 *
 */
public interface ExceptionalHolidayService {

	/**
	 * To fetch all the holidays
	 * 
	 * @return {@linkplain HolidayResponseDto}
	 * @throws MasterDataServiceException when data not fetched from DB
	 * @throws DataNotFoundException      when data not found
	 */
	ExceptionalHolidayResponseDto getAllExceptionalHolidays(String regCenterId, String langCode);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy