/******************************************************************************* *******************************************************************************/ package at.asitplus.eidas.specific.connector; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import at.gv.egiz.components.spring.api.SpringResourceProvider; public class MSSpecificeIDASNodeSpringResourceProvider implements SpringResourceProvider { @Override public Resource[] getResourcesToLoad() { ClassPathResource mseIDASNode = new ClassPathResource("/specific_eIDAS_connector.beans.xml", MSSpecificeIDASNodeSpringResourceProvider.class); ClassPathResource mseIDASNodeStorage = new ClassPathResource("/specific_eIDAS_connector.storage.beans.xml", MSSpecificeIDASNodeSpringResourceProvider.class); return new Resource[] {mseIDASNode, mseIDASNodeStorage}; } @Override public String[] getPackagesToScan() { return null; } @Override public String getName() { return "MS-specific eIDAS Node SpringResourceProvider"; } }