/******************************************************************************* *******************************************************************************/ package at.asitplus.eidas.specific.modules.authmodule_eIDASv2; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import at.gv.egiz.components.spring.api.SpringResourceProvider; public class eIDASAuthenticationSpringResourceProvider implements SpringResourceProvider { @Override public String getName() { return "Auth. module for eIDAS Ref. Impl. v2.x"; } @Override public String[] getPackagesToScan() { // TODO Auto-generated method stub return null; } @Override public Resource[] getResourcesToLoad() { ClassPathResource eIDASAuthConfig = new ClassPathResource("/eidas_v2_auth.beans.xml", eIDASAuthenticationSpringResourceProvider.class); return new Resource[] {eIDASAuthConfig}; } }