summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/config/ModelOperationsSpringConfig.java
blob: 7e0a72e4748de48d93f98751aa6961f8572c7680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.be.model.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

@Configuration
@ComponentScan({"org.openecomp.sdc.be.dao.cassandra", "org.openecomp.sdc.be.model.cache",
    "org.openecomp.sdc.be.model.jsonjanusgraph.operations",
    "org.openecomp.sdc.be.model.jsonjanusgraph.utils",
        "org.openecomp.sdc.be.model.operations.impl"})
@PropertySource("classpath:dao.properties")
public class ModelOperationsSpringConfig { }