diff options
author | Lee, Tian (tl5884) <TianL@amdocs.com> | 2018-04-27 17:50:07 +0100 |
---|---|---|
committer | Lee, Tian (tl5884) <TianL@amdocs.com> | 2018-04-30 16:43:50 +0100 |
commit | e651abed417b8a173a0745042c7dc5b20c0b7036 (patch) | |
tree | 5fea87233a40181aacefc1b927c937462ade41a5 /src/main/ajsc/babel_v1 | |
parent | 1579afa649c2e76cbdf39dcfd5b77a800cc17249 (diff) |
Convert Babel from AJSC2 to Spring Boot 1.5.12
Change-Id: I2ea10250c3881827b6b274afadf1a8c89683f568
Issue-ID: AAI-1045
Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
Diffstat (limited to 'src/main/ajsc/babel_v1')
7 files changed, 0 insertions, 55 deletions
diff --git a/src/main/ajsc/babel_v1/babel/v1/conf/babel-beans.xml b/src/main/ajsc/babel_v1/babel/v1/conf/babel-beans.xml deleted file mode 100644 index f4cc32c..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/conf/babel-beans.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?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" - 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"> - - <!-- ////////////////////////////////////////////////////////////////// --> - <!-- PROPERTY AND CONFIGURATION FILES --> - <!-- ////////////////////////////////////////////////////////////////// --> - - <context:property-placeholder location="file:${CONFIG_HOME}/babel-auth.properties" ignore-unresolvable="true" /> - - <!-- ////////////////////////////////////////////////////////////////// --> - <!-- CONFIG BEANS --> - <!-- ////////////////////////////////////////////////////////////////// --> - - <bean id="babelAuthConfig" class="org.onap.aai.babel.config.BabelAuthConfig"> - <property name="authenticationDisable" value="${auth.authentication.disable}" /> - <property name="authPolicyFile" value="${auth.policy.file}" /> - </bean> - - <!-- ////////////////////////////////////////////////////////////////// --> - <!-- IMPLEMENTATION BEANS --> - <!-- ////////////////////////////////////////////////////////////////// --> - - <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> diff --git a/src/main/ajsc/babel_v1/babel/v1/conf/coreBeans.groovy b/src/main/ajsc/babel_v1/babel/v1/conf/coreBeans.groovy deleted file mode 100644 index 37043d8..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/conf/coreBeans.groovy +++ /dev/null @@ -1,9 +0,0 @@ -beans{ - xmlns cxf: "http://camel.apache.org/schema/cxf" - xmlns jaxrs: "http://cxf.apache.org/jaxrs" - xmlns util: "http://www.springframework.org/schema/util" - - infoService(org.onap.aai.babel.service.InfoService) - - util.list(id: 'jaxrsServices') { ref(bean:'infoService') } -} diff --git a/src/main/ajsc/babel_v1/babel/v1/docs/README.txt b/src/main/ajsc/babel_v1/babel/v1/docs/README.txt deleted file mode 100644 index 3707179..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/docs/README.txt +++ /dev/null @@ -1 +0,0 @@ -Place any docs here that you want to access within the ajsc upon deployment of your service. diff --git a/src/main/ajsc/babel_v1/babel/v1/lib/README.txt b/src/main/ajsc/babel_v1/babel/v1/lib/README.txt deleted file mode 100644 index 639e21b..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/lib/README.txt +++ /dev/null @@ -1 +0,0 @@ -3rd party JAR's needed by your jars (if any) for a ajsc deployment package go here...
\ No newline at end of file diff --git a/src/main/ajsc/babel_v1/babel/v1/props/module.props b/src/main/ajsc/babel_v1/babel/v1/props/module.props deleted file mode 100644 index 17ebc08..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/props/module.props +++ /dev/null @@ -1 +0,0 @@ -EXAMPLE.PROPERTY=EXAMLE_VALUE
\ No newline at end of file diff --git a/src/main/ajsc/babel_v1/babel/v1/routes/babel-service.route b/src/main/ajsc/babel_v1/babel/v1/routes/babel-service.route deleted file mode 100644 index c12bc67..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/routes/babel-service.route +++ /dev/null @@ -1,4 +0,0 @@ -<route xmlns="http://camel.apache.org/schema/spring" trace="true"> - <from uri="att-dme2-servlet:///__module_ajsc_namespace_name__/__module_ajsc_namespace_version__/app?matchOnUriPrefix=true" /> - <to uri="cxfbean:generateArtifacts" /> -</route> diff --git a/src/main/ajsc/babel_v1/babel/v1/routes/coreServices.route b/src/main/ajsc/babel_v1/babel/v1/routes/coreServices.route deleted file mode 100644 index 076fb36..0000000 --- a/src/main/ajsc/babel_v1/babel/v1/routes/coreServices.route +++ /dev/null @@ -1,4 +0,0 @@ -<route xmlns="http://camel.apache.org/schema/spring" trace="true"> - <from uri="att-dme2-servlet:///__module_ajsc_namespace_name__/__module_ajsc_namespace_version__/core?matchOnUriPrefix=true" /> - <to uri="cxfbean:jaxrsServices" /> -</route> |