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

tech.deepdreams.worker.api.context.DeductionBasisContext Maven / Gradle / Ivy

There is a newer version: 0.1.1-RELEASE
Show newest version
package tech.deepdreams.worker.api.context;
import java.util.Map;
import java.util.ServiceLoader ;
import java.util.ServiceLoader.Provider;
import tech.deepdreams.worker.api.exceptions.ServiceNotFoundException;
import tech.deepdreams.worker.api.services.DeductionBasisService;

public class DeductionBasisContext {
	private DeductionBasisService deductionBasisService ;
	
	public DeductionBasisContext(String countryCode, String deductionCode, int version){
		this.deductionBasisService = ServiceLoader.load(DeductionBasisService.class)
					 .stream()
					 .map(Provider::get)
					 .filter(service -> service.country().equals(countryCode) && service.code().equals(deductionCode) && service.version() == version) 
					 .findAny()
					 .orElseThrow(() -> new ServiceNotFoundException()) ;
	}
	
	
	public Double calculate(Map params, Map advantagesInKind) {
		return deductionBasisService.calculate(params, advantagesInKind) ;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy