summaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java
diff options
context:
space:
mode:
authorBenjamin, Max (mb388a) <mb388a@us.att.com>2018-03-28 23:27:50 -0400
committerBenjamin, Max (mb388a) <mb388a@us.att.com>2018-03-28 23:27:50 -0400
commit76e46d726af8c3221f1e72b65c12be6ca8f59571 (patch)
tree852f64669f1577716a93524bd251934f9f6fcd50 /mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java
parent18e1b7e421e5bcf0397c4d071164f7fcf043985c (diff)
removed unused api-handler code
Change-Id: I4fc23794cc96092ca4144bd847de91cff4bdb02b Issue-ID: SO-548 Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java')
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java
deleted file mode 100644
index df51a8f96a..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/VfModuleModelNamesHandler.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * 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=========================================================
- */
-
-package org.openecomp.mso.apihandlerinfra;
-
-
-import java.io.StringWriter;
-import java.util.List;
-
-import javax.ws.rs.GET;
-import javax.ws.rs.Path;
-import javax.ws.rs.PathParam;
-import javax.ws.rs.core.Response;
-import javax.xml.bind.JAXBContext;
-import javax.xml.bind.JAXBException;
-import javax.xml.bind.Marshaller;
-
-import org.apache.http.HttpStatus;
-import org.openecomp.mso.apihandlerinfra.vnfbeans.VfModuleModelName;
-import org.openecomp.mso.apihandlerinfra.vnfbeans.VfModuleModelNames;
-import org.openecomp.mso.apihandlerinfra.vnfbeans.ObjectFactory;
-import org.openecomp.mso.db.catalog.CatalogDatabase;
-import org.openecomp.mso.db.catalog.beans.VfModule;
-import org.openecomp.mso.logger.MsoLogger;
-import com.wordnik.swagger.annotations.Api;
-import com.wordnik.swagger.annotations.ApiOperation;
-
-@Path(Constants.VF_MODULE_MODEL_NAMES_PATH)
-@Api(value="/{version: v2|v3}/vf-module-model-names",description="API Requests to find Vf Module model names")
-public class VfModuleModelNamesHandler {
-
- private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH);
- private static final String LOG_SERVICE_NAME = "InfrastructurePortal:MSO-APIH.";
-
- @GET
- @ApiOperation(value="Finds Vf Module Model Names",response=Response.class)
- public Response getVfModuleModelNames (@PathParam("version") String version) {
- long startTime = System.currentTimeMillis ();
- String methodName = "getVfModuleModelNames";
- MsoLogger.setServiceName (LOG_SERVICE_NAME + methodName);
- msoLogger.debug ("Incoming request received for vfModuleModelNames");
- List <VfModule> vfModules = null;
- try (CatalogDatabase db = CatalogDatabase.getInstance()){
- vfModules = db.getAllVfModules ();
- } catch (Exception e) {
- msoLogger.debug ("No connection to catalog DB", e);
- msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.ERROR, MsoLogger.ResponseCode.DBAccessError, "no connection to catalog DB");
- msoLogger.debug ("End of the transaction, the final response is: " + e.toString ());
- return Response.status (HttpStatus.SC_NOT_FOUND).entity (e.toString ()).build ();
- }
-
- if (vfModules == null) {
- msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.ERROR, MsoLogger.ResponseCode.DataNotFound, "VfModule not found");
- msoLogger.debug ("End of the transaction. VfModuleModelName not found the final response status: " + HttpStatus.SC_NOT_FOUND);
- return Response.status (HttpStatus.SC_NOT_FOUND).entity ("").build ();
- }
-
- ObjectFactory beansObjectFactory = new ObjectFactory ();
- VfModuleModelNames vfModuleModelNames = beansObjectFactory.createVfModuleModelNames ();
- for (VfModule vfModule : vfModules) {
- VfModuleModelName vfModuleModelName = beansObjectFactory.createVfModuleModelName();
- VfModule vm = vfModule;
- vfModuleModelName.setModelName(vm.getModelName());
- vfModuleModelName.setModelVersion(vm.getVersion());
- vfModuleModelName.setModelInvariantUuid(vm.getModelInvariantUuid());
- vfModuleModelName.setIsBase(vm.isBase());
- vfModuleModelName.setDescription(vm.getDescription());
- vfModuleModelName.setId(String.valueOf(vm.getModelUUID()));
- vfModuleModelName.setAsdcServiceModelVersion(vm.getVersion());
- vfModuleModelNames.getVfModuleModelName().add(vfModuleModelName);
- }
-
- StringWriter stringWriter = new StringWriter ();
- try {
- JAXBContext jaxbContext = JAXBContext.newInstance (VfModuleModelNames.class);
- Marshaller jaxbMarshaller = jaxbContext.createMarshaller ();
-
- jaxbMarshaller.setProperty (Marshaller.JAXB_FORMATTED_OUTPUT, true);
- jaxbMarshaller.marshal (vfModuleModelNames, stringWriter);
-
- } catch (JAXBException e) {
- msoLogger.debug ("Error marshalling", e);
- }
-
- String response = stringWriter.toString ();
- msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Successful");
- msoLogger.debug ("End of the transaction, the final response is: " + response);
- return Response.status (HttpStatus.SC_OK).entity (response).build ();
- }
-}