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

tech.deepdreams.worker.api.context.DeductionContext 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.DeductionService;

public class DeductionContext {
	private DeductionService deductionService ;
	
	public DeductionContext(String countryCode, String deductionCode, int version){
		this.deductionService = ServiceLoader.load(DeductionService.class)
					 .stream()
					 .map(Provider::get)
					 .filter(service -> service.country().name().equals(countryCode) && service.code().equals(deductionCode) && service.version() == version) 
					 .findAny()
					 .orElseThrow(() -> new ServiceNotFoundException()) ;
	}
	
	
	public Double calculateEmployee(Map params) {
		return deductionService.calculateEmployee(params) ;
	}
	
	public Double calculateEmployer(Map params) {
		return deductionService.calculateEmployer(params) ;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy