Removing dead code... DME2 does nothing... 20/97920/1
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 4 Nov 2019 17:04:03 +0000 (12:04 -0500)
committerOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 4 Nov 2019 17:05:00 +0000 (12:05 -0500)
Issue-ID: CCSDK-1897

Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
Change-Id: I5b9abb83f9c2e2a4329a393fb8c0fa10801a770c

ms/blueprintsprocessor/modules/commons/dmaap-lib/src/main/resources/event.properties
ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/BluePrintRestLibConfiguration.kt
ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/BluePrintRestLibData.kt
ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/BluePrintRestLibPropertyService.kt
ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/DME2ProxyRestClientService.kt [deleted file]

index 320b08e..b44dba3 100644 (file)
@@ -18,7 +18,7 @@
 # ============LICENSE_END=========================================================
 #
 
-#TransportType-Specify which way user want to use. I.e. <HTTPAAF,DME2,HTTPAUTH >
+#TransportType-Specify which way user want to use. I.e. <HTTPAAF,HTTPAUTH >
 Protocol =http
 partition=1
 contenttype = application/json
index b68627f..182d5de 100644 (file)
@@ -57,7 +57,6 @@ class RestLibConstants {
         const val TYPE_SSL_BASIC_AUTH = "ssl-basic-auth"
         const val TYPE_SSL_TOKEN_AUTH = "ssl-token-auth"
         const val TYPE_SSL_NO_AUTH = "ssl-no-auth"
-        const val TYPE_DME2_PROXY = "dme2-proxy"
         const val TYPE_POLICY_MANAGER = "policy-manager"
     }
-}
\ No newline at end of file
+}
index 1e6e23b..ea32a16 100644 (file)
@@ -52,16 +52,6 @@ open class TokenAuthRestClientProperties : RestClientProperties() {
     var token: String? = null
 }
 
-open class DME2RestClientProperties : RestClientProperties() {
-    lateinit var service: String
-    lateinit var subContext: String
-    lateinit var version: String
-    lateinit var envContext: String
-    lateinit var routeOffer: String
-    var partner: String? = null
-    lateinit var appId: String
-}
-
 open class PolicyManagerRestClientProperties : RestClientProperties() {
     lateinit var env: String
     lateinit var clientAuth: String
index 384946a..9a7b3c3 100644 (file)
@@ -76,9 +76,7 @@ open class BluePrintRestLibPropertyService(private var bluePrintProperties:
             RestLibConstants.TYPE_SSL_NO_AUTH -> {
                 sslNoAuthRestClientProperties(prefix)
             }
-            RestLibConstants.TYPE_DME2_PROXY -> {
-                dme2ProxyClientProperties(prefix)
-            }
+
             RestLibConstants.TYPE_POLICY_MANAGER -> {
                 policyManagerRestClientProperties(prefix)
             }
@@ -99,9 +97,7 @@ open class BluePrintRestLibPropertyService(private var bluePrintProperties:
             RestLibConstants.TYPE_BASIC_AUTH -> {
                 JacksonUtils.readValue(jsonNode, BasicAuthRestClientProperties::class.java)!!
             }
-            RestLibConstants.TYPE_DME2_PROXY -> {
-                JacksonUtils.readValue(jsonNode, DME2RestClientProperties::class.java)!!
-            }
+
             RestLibConstants.TYPE_POLICY_MANAGER -> {
                 JacksonUtils.readValue(jsonNode, PolicyManagerRestClientProperties::class.java)!!
             }
@@ -134,9 +130,6 @@ open class BluePrintRestLibPropertyService(private var bluePrintProperties:
             is BasicAuthRestClientProperties -> {
                 return BasicAuthRestClientService(restClientProperties)
             }
-            is DME2RestClientProperties -> {
-                return DME2ProxyRestClientService(restClientProperties)
-            }
             else -> {
                 throw BluePrintProcessorException("couldn't get rest service for type:${restClientProperties.type}  uri: ${restClientProperties.url}")
             }
@@ -187,12 +180,6 @@ open class BluePrintRestLibPropertyService(private var bluePrintProperties:
             prefix, SSLRestClientProperties::class.java)
     }
 
-    private fun dme2ProxyClientProperties(prefix: String):
-        DME2RestClientProperties {
-        return bluePrintProperties.propertyBeanType(
-            prefix, DME2RestClientProperties::class.java)
-    }
-
     private fun policyManagerRestClientProperties(prefix: String):
         PolicyManagerRestClientProperties {
         return bluePrintProperties.propertyBeanType(
diff --git a/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/DME2ProxyRestClientService.kt b/ms/blueprintsprocessor/modules/commons/rest-lib/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/DME2ProxyRestClientService.kt
deleted file mode 100644 (file)
index 8e0a2d3..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright © 2017-2019 AT&T, Bell Canada
- *
- * 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.
- */
-
-package org.onap.ccsdk.cds.blueprintsprocessor.rest.service
-
-import org.onap.ccsdk.cds.blueprintsprocessor.rest.RestClientProperties
-
-class DME2ProxyRestClientService(restClientProperties: RestClientProperties) : BlueprintWebClientService {
-    override fun defaultHeaders(): Map<String, String> {
-        TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
-    }
-
-    override fun host(uri: String): String {
-        TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
-    }
-}
\ No newline at end of file