Upversion artifacts to 1.8.0-SNAPSHOT
[aai/data-router.git] / FUNCTIONS.md
index b2090e1..84efd58 100644 (file)
@@ -4,6 +4,15 @@ The _Synapse_ data router comes packaged with a set of functionality that needs
 
 ## Entity Change Event
 
+### Interfaces
+
+_Synapse_ pulls from message bus 
+Purpose:
+- Get every create/update/delete events coming from _AAI Resources_
+
+_Synapse_ -> Search data Service port 9509 (REST)
+Purposes: 
+ - Update secondary database with information pulled from the message bus
 
 ### Configuration
 
@@ -19,7 +28,7 @@ In order to take advantage of the entity change event functionality the followin
                         http://www.springframework.org/schema/beans
                         http://www.springframework.org/schema/beans/spring-beans.xsd">
 
-        <bean id="eepConfig" class="org.openecomp.datarouter.policy.EntityEventPolicyConfig" >
+        <bean id="eepConfig" class="org.onap.aai.datarouter.policy.EntityEventPolicyConfig" >
                <property name="sourceDomain" value="{domain-origin}" />
            <property name="searchBaseUrl" value="https://{search-service-host}:{search-service-port}" />
            <property name="searchEndpoint" value="services/search-data-service/v1/search/indexes/" />
@@ -33,7 +42,7 @@ In order to take advantage of the entity change event functionality the followin
            <property name="searchKeystore" value="{keystore-name}" />
         </bean>
 
-        <bean id="entityEventPolicy" class="org.openecomp.datarouter.policy.EntityEventPolicy" init-method="startup" >
+        <bean id="entityEventPolicy" class="org.onap.aai.datarouter.policy.EntityEventPolicy" init-method="startup" >
             <constructor-arg ref="eepConfig"/>
         </bean>
        </beans>