From 693ae815dc41650498fefb87bf2d4a1639a3b855 Mon Sep 17 00:00:00 2001 From: "Arul.Nambi" Date: Fri, 13 Oct 2017 13:53:04 -0400 Subject: Fixing the startup after junit increase The ajsc container was starting up after the cleanup. So cleaning up the servlet filters to remove the unwanted files. Issue-ID: AAI-429 Change-Id: I254e4421a6e1735191afc48cf58cb3c46e17defc Signed-off-by: Arul.Nambi --- src/main/config/ajsc-override-web.xml | 10 ----- src/main/config/runner-web.xml | 12 ------ src/main/java/org/onap/aai/sparky/HelloWorld.java | 46 ++++++++++++++++++++++ .../sparky/dal/sas/config/SearchServiceConfig.java | 5 --- .../task/PerformActiveInventoryRetrieval.java | 4 +- .../org/onap/aai/sparky/util/KeystoreBuilder.java | 2 +- .../resources/appconfig/elasticsearch.properties | 2 - .../resources/appconfig/etc/ajsc-override-web.xml | 10 ----- src/test/resources/appconfig/etc/runner-web.xml | 12 ------ .../resources/appconfig/search-service.properties | 3 -- 10 files changed, 50 insertions(+), 56 deletions(-) create mode 100644 src/main/java/org/onap/aai/sparky/HelloWorld.java (limited to 'src') diff --git a/src/main/config/ajsc-override-web.xml b/src/main/config/ajsc-override-web.xml index c07a539..c66ac89 100644 --- a/src/main/config/ajsc-override-web.xml +++ b/src/main/config/ajsc-override-web.xml @@ -26,16 +26,6 @@ /visualization/* - - GeoVisualizationServlet - /visualization/geovisualization/* - - - - EntityCountHistoryServlet - /visualization/entityCountHistory/* - - springSecurityFilterChain /* diff --git a/src/main/config/runner-web.xml b/src/main/config/runner-web.xml index f70d71b..1c6ccdc 100644 --- a/src/main/config/runner-web.xml +++ b/src/main/config/runner-web.xml @@ -30,18 +30,6 @@ org.onap.aai.sparky.viewandinspect.servlet.VisualizationServlet - - GeoVisualizationServlet - org.onap.aai.sparky.inventory.servlet.GeoVisualizationServlet - - - - EntityCountHistoryServlet - org.onap.aai.sparky.inventory.servlet.EntityCountHistoryServlet - - - - ElasticSearchSynchronizerFilter org.onap.aai.sparky.synchronizer.filter.ElasticSearchSynchronizerFilter diff --git a/src/main/java/org/onap/aai/sparky/HelloWorld.java b/src/main/java/org/onap/aai/sparky/HelloWorld.java new file mode 100644 index 0000000..688416b --- /dev/null +++ b/src/main/java/org/onap/aai/sparky/HelloWorld.java @@ -0,0 +1,46 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017 Amdocs + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + */ +package org.onap.aai.sparky; + +import org.apache.camel.Exchange; + +/** + * The Class HelloWorld. + */ +public class HelloWorld { + + /** + * Instantiates a new hello world. + */ + public HelloWorld() {} + + /** + * Speak. + * + * @param exc the exc + */ + public final void speak(Exchange exc) { + exc.setOut(exc.getIn()); + exc.getOut().setBody("Hello World!"); + } +} \ No newline at end of file diff --git a/src/main/java/org/onap/aai/sparky/dal/sas/config/SearchServiceConfig.java b/src/main/java/org/onap/aai/sparky/dal/sas/config/SearchServiceConfig.java index 66e7d7b..ff3a151 100644 --- a/src/main/java/org/onap/aai/sparky/dal/sas/config/SearchServiceConfig.java +++ b/src/main/java/org/onap/aai/sparky/dal/sas/config/SearchServiceConfig.java @@ -70,9 +70,6 @@ public class SearchServiceConfig { private static final String TOPOGRAPHICAL_INDEX_NAME_DEFAULT = "topographicalsearchindex-localhost"; - private static final String ENTITY_COUNT_HISTORY_INDEX_NAME_DEFAULT = - "entitycounthistoryindex-localhost"; - private static final String VERSION_DEFAULT = "v1"; public static SearchServiceConfig getConfig() throws Exception { @@ -111,8 +108,6 @@ public class SearchServiceConfig { auditIndexName = sasProps.getProperty("auditIndexName", AUDIT_INDEX_NAME_DEFAULT); topographicalSearchIndex = sasProps.getProperty("topographicalIndexName", TOPOGRAPHICAL_INDEX_NAME_DEFAULT); - entityCountHistoryIndex = sasProps.getProperty("entityCountHistoryIndexName", - ENTITY_COUNT_HISTORY_INDEX_NAME_DEFAULT); certName = sasProps.getProperty("ssl.cert-name", "aai-client-cert.p12"); keystorePassword = sasProps.getProperty("ssl.keystore-password", diff --git a/src/main/java/org/onap/aai/sparky/synchronizer/task/PerformActiveInventoryRetrieval.java b/src/main/java/org/onap/aai/sparky/synchronizer/task/PerformActiveInventoryRetrieval.java index cde59d3..f3b1dff 100644 --- a/src/main/java/org/onap/aai/sparky/synchronizer/task/PerformActiveInventoryRetrieval.java +++ b/src/main/java/org/onap/aai/sparky/synchronizer/task/PerformActiveInventoryRetrieval.java @@ -27,6 +27,7 @@ import java.util.function.Supplier; import org.onap.aai.sparky.dal.NetworkTransaction; import org.onap.aai.sparky.dal.aai.ActiveInventoryDataProvider; +import org.onap.aai.sparky.dal.aai.config.ActiveInventoryConfig; import org.onap.aai.sparky.dal.rest.OperationResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -74,7 +75,8 @@ public class PerformActiveInventoryRetrieval implements Supplier/visualization/* - - GeoVisualizationServlet - /visualization/geovisualization/* - - - - EntityCountHistoryServlet - /visualization/entityCountHistory/* - - springSecurityFilterChain /* diff --git a/src/test/resources/appconfig/etc/runner-web.xml b/src/test/resources/appconfig/etc/runner-web.xml index f70d71b..1c6ccdc 100644 --- a/src/test/resources/appconfig/etc/runner-web.xml +++ b/src/test/resources/appconfig/etc/runner-web.xml @@ -30,18 +30,6 @@ org.onap.aai.sparky.viewandinspect.servlet.VisualizationServlet - - GeoVisualizationServlet - org.onap.aai.sparky.inventory.servlet.GeoVisualizationServlet - - - - EntityCountHistoryServlet - org.onap.aai.sparky.inventory.servlet.EntityCountHistoryServlet - - - - ElasticSearchSynchronizerFilter org.onap.aai.sparky.synchronizer.filter.ElasticSearchSynchronizerFilter diff --git a/src/test/resources/appconfig/search-service.properties b/src/test/resources/appconfig/search-service.properties index 13e25ac..4f7f036 100644 --- a/src/test/resources/appconfig/search-service.properties +++ b/src/test/resources/appconfig/search-service.properties @@ -15,9 +15,6 @@ search-service.httpPort=9509 # # Searchable entities search-service.indexName=entity-search-index -# Inventory searches -search-service.topographicalIndexName=topography-search-index -search-service.entityCountHistoryIndexName=entitycounthistoryindex ############################## Version ############################## # -- cgit 1.2.3-korg