| <!-- |
| ============LICENSE_START======================================================= |
| org.onap.aai |
| ================================================================================ |
| Copyright © 2018 AT&T Intellectual Property. All rights reserved. |
| Copyright © 2018 Amdocs |
| ================================================================================ |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| ============LICENSE_END========================================================= |
| --> |
| <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="eventConsumer" class="org.onap.aai.event.client.DMaaPEventConsumer"> |
| <constructor-arg name="host" value="message-router.{{.Release.Namespace}}:{{.Values.event.port.dmaap}}" /> |
| <constructor-arg name="topic" value="{{.Values.event.consumer.topic}}" /> |
| <constructor-arg name="username" value="" /> |
| <constructor-arg name="password" value="" /> |
| <constructor-arg name="consumerGroup" value="spike" /> |
| <constructor-arg name="consumerId" value="spike" /> |
| <constructor-arg name="timeoutMs" value="1000" /> |
| <constructor-arg name="messageLimit" value="100" /> |
| <constructor-arg name="transportType" value="HTTPAUTH" /> |
| <constructor-arg name="protocol" value="{{.Values.event.protocol}}" /> |
| <constructor-arg name="filter"><null /></constructor-arg> |
| </bean> |
| |
| <bean id="eventPublisher" class="org.onap.aai.event.client.DMaaPEventPublisher" > |
| <constructor-arg name="host" value="message-router.{{.Release.Namespace}}:{{.Values.event.port.dmaap}}" /> |
| <constructor-arg name="topic" value="{{.Values.event.publisher.topic}}" /> |
| <constructor-arg name="username" value="" /> |
| <constructor-arg name="password" value="" /> |
| <constructor-arg name="maxBatchSize" value="100" /> |
| <constructor-arg name="maxAgeMs" value="250" /> |
| <constructor-arg name="delayBetweenBatchesMs" value="50" /> |
| <constructor-arg name="transportType" value="HTTPAUTH" /> |
| <constructor-arg name="protocol" value="{{.Values.event.protocol}}" /> |
| <constructor-arg name="contentType" value="application/json" /> |
| </bean> |
| |
| <bean id="spikeService" class="org.onap.aai.spike.service.SpikeService" init-method="startup"> |
| <constructor-arg ref="eventConsumer" /> |
| <constructor-arg ref="eventPublisher" /> |
| </bean> |
| |
| </beans> |