package at.gv.egovernment.moa.id.auth.modules.sl20_auth; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import at.gv.egiz.components.spring.api.SpringResourceProvider; public class SL20AuthenticationSpringResourceProvider implements SpringResourceProvider { @Override public String getName() { return "MOA-ID Security-Layer 2.0 Authentication SpringResourceProvider"; } @Override public String[] getPackagesToScan() { // TODO Auto-generated method stub return null; } @Override public Resource[] getResourcesToLoad() { ClassPathResource sl20AuthConfig = new ClassPathResource("/moaid_sl20_auth.beans.xml", SL20AuthenticationSpringResourceProvider.class); return new Resource[] {sl20AuthConfig}; } }