summaryrefslogtreecommitdiffstats
path: root/champ-service/dynamic/conf/champ-beans.xml
diff options
context:
space:
mode:
authorMichael Arrastia <MArrasti@amdocs.com>2018-03-05 13:33:35 +0000
committerMichael Arrastia <MArrasti@amdocs.com>2018-03-05 15:05:15 +0000
commit234a998a34c44e97533827076a32f8d972fc93da (patch)
tree950712dbbeeacc104708b90c305491db5b0eb689 /champ-service/dynamic/conf/champ-beans.xml
parentdca9d698d15f7b2f53ad4941ee8d9306e6ddf17e (diff)
Add champ-service configuration
Define environment specific configuration in champ-beans.xml (test-config/champ-service/dynamic/conf/champ-beans.xml): Graph host: key="storage.hostname" value="aai.hbase.simpledemo.onap.org" Graph port: key="storage.hbase.ext.hbase.zookeeper.property.clientPort" value="2181" key="storage.port" value="2181" Event bus host: name="host" value="mr.api.simpledemo.openecomp.org:3904" Change-Id: I7c9c029047dd402dcd4a9d4023c33c532cf07e10 Issue-ID: AAI-815 Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
Diffstat (limited to 'champ-service/dynamic/conf/champ-beans.xml')
-rw-r--r--champ-service/dynamic/conf/champ-beans.xml80
1 files changed, 80 insertions, 0 deletions
diff --git a/champ-service/dynamic/conf/champ-beans.xml b/champ-service/dynamic/conf/champ-beans.xml
new file mode 100644
index 0000000..28b4d8c
--- /dev/null
+++ b/champ-service/dynamic/conf/champ-beans.xml
@@ -0,0 +1,80 @@
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:util="http://www.springframework.org/schema/util"
+ xsi:schemaLocation="
+ http://www.springframework.org/schema/beans
+ http://www.springframework.org/schema/beans/spring-beans.xsd
+ http://www.springframework.org/schema/util
+ http://www.springframework.org/schema/util/spring-util.xsd
+ ">
+
+
+ <bean id="champEventPublisher" class="com.att.ecomp.event.client.DMaaPEventPublisher">
+ <constructor-arg name="host" value="mr.api.simpledemo.openecomp.org:3904"/>
+ <constructor-arg name="topic" value="champRawEventsOnap"/>
+ <constructor-arg name="username" value="test"/>
+ <constructor-arg name="password" value="test"/>
+ <constructor-arg name="maxBatchSize" value="100"/>
+ <constructor-arg name="maxAgeMs" value="250"/>
+ <constructor-arg name="delayBetweenBatchesMs" value="50"/>
+ <constructor-arg name="transportType" value="HTTPAUTH"/>
+ </bean>
+
+ <!-- Graph Implementation Configuration-->
+ <util:map id="props" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.Object">
+ <entry key="champcore.event.stream.buffer.capacity" value="50" value-type="java.lang.Integer"/>
+ <entry key="champcore.event.stream.publisher-pool-size" value="10" value-type="java.lang.Integer"/>
+ <entry key="champcore.event.stream.publisher" value-ref="champEventPublisher"/>
+
+ <entry key="graph.name" value="aaigraph-onap.dev"/>
+ <entry key="storage.backend" value="hbase"/>
+ <entry key="storage.hostname" value="aai.hbase.simpledemo.onap.org"/>
+
+ <!-- Hbase Config -->
+ <entry key="storage.hbase.ext.hbase.zookeeper.property.clientPort" value="2181"/>
+ <entry key="storage.hbase.ext.zookeeper.znode.parent" value="/hbase-unsecure"/>
+
+ <!-- Cassandra Config -->
+ <entry key="storage.port" value="2181"/>
+ </util:map>
+
+ <!-- Titan Implementation -->
+ <bean id="graphBuilder" class="org.onap.aai.champtitan.graph.impl.TitanChampGraphImpl$Builder">
+ <constructor-arg value="aaigraph-onap.dev"/>
+ <constructor-arg ref="props" />
+ </bean>
+ <bean id="graphImpl" class="org.onap.aai.champtitan.graph.impl.TitanChampGraphImpl">
+ <constructor-arg ref="graphBuilder" />
+ </bean>
+
+ <!-- Janus Implementation -->
+<!--
+ <bean id="graphBuilder" class="org.onap.aai.champjanus.graph.impl.JanusChampGraphImpl$Builder">
+ <constructor-arg value="<%= @CHAMP_GRAPH_NAME %>"/>
+ <constructor-arg ref="props"/>
+ </bean>
+ <bean id="graphImpl" class="org.onap.aai.champjanus.graph.impl.JanusChampGraphImpl">
+ <constructor-arg ref="graphBuilder"/>
+ </bean>
+-->
+
+ <bean id="champUUIDService" class="org.onap.champ.service.ChampUUIDService">
+ <constructor-arg name="graphImpl" ref="graphImpl"/>
+ </bean>
+
+ <bean id="cache" class="org.onap.champ.service.ChampTransactionCache">
+ <constructor-arg name="txTimeOutInSec" value="600"/>
+ <constructor-arg name="graphImpl" ref="graphImpl"/>
+ </bean>
+
+ <bean id="champDataService" class="org.onap.champ.service.ChampDataService">
+ <constructor-arg name="champUUIDService" ref="champUUIDService"/>
+ <constructor-arg name="graphImpl" ref="graphImpl"/>
+ <constructor-arg name="cache" ref="cache"/>
+ </bean>
+
+ <bean id="champRestService" class="org.onap.champ.ChampRESTAPI">
+ <constructor-arg name="champDataService" ref="champDataService"/>
+ <constructor-arg name="champAsyncRequestProcessor" ref="champAsyncRequestProcessor"/>
+ </bean>
+</beans> \ No newline at end of file