diff options
author | Lee, Tian (tl5884) <TianL@amdocs.com> | 2018-05-08 12:01:21 +0100 |
---|---|---|
committer | Lee, Tian (tl5884) <TianL@amdocs.com> | 2018-05-08 12:01:21 +0100 |
commit | ee07ee287cab944dfc7371b3eeb230d1ba7e736e (patch) | |
tree | add8f7a8546d31fa17b663defb3b6c7259db1760 /src/main/resources | |
parent | 4229965d8a112a9311505224e2bae254d25710dc (diff) |
Fix Babel authorisation mechanismv1.2.02.0.0-ONAPbeijing2.0.0-ONAP
Change-Id: Iae3139b33e315fae0c205fd7e0df67554d91cd5b
Issue-ID: AAI-1126
Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/babel-beans.xml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/main/resources/babel-beans.xml b/src/main/resources/babel-beans.xml index f4cc32c..e979a2e 100644 --- a/src/main/resources/babel-beans.xml +++ b/src/main/resources/babel-beans.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" +<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"> @@ -8,7 +9,9 @@ <!-- PROPERTY AND CONFIGURATION FILES --> <!-- ////////////////////////////////////////////////////////////////// --> - <context:property-placeholder location="file:${CONFIG_HOME}/babel-auth.properties" ignore-unresolvable="true" /> + <context:property-placeholder + location="file:${CONFIG_HOME}/babel-auth.properties" + ignore-unresolvable="true" /> <!-- ////////////////////////////////////////////////////////////////// --> <!-- CONFIG BEANS --> @@ -23,13 +26,8 @@ <!-- IMPLEMENTATION BEANS --> <!-- ////////////////////////////////////////////////////////////////// --> - <bean id="aaiMicroServiceAuth" class="org.onap.aai.auth.AAIMicroServiceAuth" > + <bean id="aaiMicroServiceAuth" class="org.onap.aai.auth.AAIMicroServiceAuth"> <constructor-arg ref="babelAuthConfig" /> </bean> - - <bean id="generateArtifacts" class="org.onap.aai.babel.service.GenerateArtifactsServiceImpl" > - <constructor-arg ref="aaiMicroServiceAuth" /> - </bean> - </beans> |