Sync Integ to Master
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / simulator / tenant / ImportTableConfig.java
1 package org.openecomp.sdc.asdctool.simulator.tenant;
2
3 import org.openecomp.sdc.be.dao.cassandra.CassandraClient;
4 import org.openecomp.sdc.be.dao.cassandra.OperationalEnvironmentDao;
5 import org.springframework.context.annotation.Bean;
6 import org.springframework.context.annotation.Configuration;
7
8 @Configuration
9 public class ImportTableConfig {
10         @Bean(name = "cassandra-client")
11         public CassandraClient cassandraClient() {
12                 return new CassandraClient();
13         }
14         
15         @Bean(name = "operational-environment-dao")
16         public OperationalEnvironmentDao operationalEnvironmentDao() {
17                 return new OperationalEnvironmentDao();
18         }
19 }