summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/aai/datarouter/SpringXMLConfig.java
blob: 1d9234c4e7c455a7cf2fd0eaacabd24be482ee40 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.aai.datarouter;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

@Configuration
@ImportResource({"file:${SERVICE_BEANS}/*.xml"})
public class SpringXMLConfig {

 
}