tech.deepdreams.worker.api.context.DeductionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-api Show documentation
Show all versions of worker-api Show documentation
Payroll Worker API project for Java 17
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) ;
}
}