[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / onboarding-rest-war / src / main / webapp / WEB-INF / beans-services.xml
index 5eb2b98..609d69f 100644 (file)
@@ -7,6 +7,7 @@
        http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
 
+
     <import resource="classpath:META-INF/cxf/cxf.xml"/>
     <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
 
 
     <!-- ASDC -->
     <bean id="vendorLicenseManager" class="org.openecomp.sdc.vendorlicense.impl.VendorLicenseManagerImpl"/>
-    <bean id="vendorSoftwareProductManager" class="org.openecomp.sdc.vendorsoftwareproduct.impl.VendorSoftwareProductManagerImpl"/>
-    <bean id="UploadValidationManager" class="org.openecomp.sdc.validation.impl.UploadValidationManagerImpl"/>
+    <bean id="uploadValidationManager" class="org.openecomp.sdc.validation.impl.UploadValidationManagerImpl"/>
     <bean id="actionManager" class="org.openecomp.sdc.action.impl.ActionManagerImpl"/>
     <bean id="applicationConfigManager" class="org.openecomp.sdc.applicationconfig.impl.ApplicationConfigManagerImpl"/>
 
+    <!-- aspect beans -->
+    <bean id = "debugAspect" class="org.openecomp.sdc.logging.aspects.DebugAspect"/>
+
+    <!--aop:config>
+        < aspect pointcuts>
+        <aop:pointcut id="loggingDebugPointcut" expression="execution(* org.openecomp.sdc.*.*.*(..))"/>
+
+        <advices>
+        <aop:aspect id="logDebugAspect" ref="debugAspect">
+            <aop:before pointcut-ref="loggingDebugPointcut" method="debugEnterMethod"/>
+            <aop:after-returning pointcut-ref="loggingDebugPointcut" method="debugExitMethod"/>
+        </aop:aspect>
+    </aop:config-->
+
+
+
+
     <!-- RESTful Services -->
     <jaxrs:server id="restContainer" address="/">
 
@@ -54,6 +71,9 @@
             <ref bean="actions"/>
             <ref bean="applicationConfiguration"/>
             <ref bean="componentUploads"/>
+            <ref bean="orchestrationTemplateCandidate"/>
+            <ref bean="componentDependencyModel"/>
+            <ref bean="activityLog"/>
         </jaxrs:serviceBeans>
 
         <jaxrs:providers>