X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fmodel-loader.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fmodelloader%2Fentity%2Fmodel%2FNamedQueryArtifact.java;h=ba5d12bdc20a31e563d2a661450500da24e35b80;hp=a8fdc8e0802abb9e085356b15077aa3f20f4c84f;hb=270656abb1ed24930b2f9e57f5bef659494f5e8e;hpb=5209f42102348d19a389017c1717f0edc3733b36 diff --git a/src/main/java/org/onap/aai/modelloader/entity/model/NamedQueryArtifact.java b/src/main/java/org/onap/aai/modelloader/entity/model/NamedQueryArtifact.java index a8fdc8e..ba5d12b 100644 --- a/src/main/java/org/onap/aai/modelloader/entity/model/NamedQueryArtifact.java +++ b/src/main/java/org/onap/aai/modelloader/entity/model/NamedQueryArtifact.java @@ -1,5 +1,5 @@ /** - * ============LICENSE_START======================================================= + * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. @@ -23,18 +23,16 @@ package org.onap.aai.modelloader.entity.model; import java.util.List; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; -import org.onap.aai.cl.api.Logger; -import org.onap.aai.cl.eelf.LoggerFactory; + import org.onap.aai.modelloader.config.ModelLoaderConfig; -import org.onap.aai.modelloader.entity.Artifact; import org.onap.aai.modelloader.entity.ArtifactType; import org.onap.aai.modelloader.restclient.AaiRestClient; -import org.onap.aai.modelloader.service.ModelLoaderMsgs; + +import org.onap.aai.modelloader.entity.Artifact; import org.onap.aai.restclient.client.OperationResult; -public class NamedQueryArtifact extends AbstractModelArtifact { - private Logger logger = LoggerFactory.getInstance().getLogger(NamedQueryArtifact.class.getName()); +public class NamedQueryArtifact extends AbstractModelArtifact { private String namedQueryUuid; @@ -56,7 +54,15 @@ public class NamedQueryArtifact extends AbstractModelArtifact { } @Override - public boolean push(AaiRestClient aaiClient, ModelLoaderConfig config, String distId, + public boolean push(AaiRestClient aaiClient, ModelLoaderConfig config, String distId, List completedArtifacts) { + if (config.useGizmo()) { + return pushToGizmo(aaiClient, config, distId, completedArtifacts); + } + + return pushToResources(aaiClient, config, distId, completedArtifacts); + } + + private boolean pushToResources(AaiRestClient aaiClient, ModelLoaderConfig config, String distId, List completedArtifacts) { OperationResult getResponse = aaiClient.getResource(getNamedQueryUrl(config), distId, MediaType.APPLICATION_XML_TYPE); @@ -66,16 +72,14 @@ public class NamedQueryArtifact extends AbstractModelArtifact { MediaType.APPLICATION_XML_TYPE); if (putResponse != null && putResponse.getResultCode() == Response.Status.CREATED.getStatusCode()) { completedArtifacts.add(this); - logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, - getType().toString() + " " + getUniqueIdentifier() + " successfully ingested."); + logInfoMsg(getType().toString() + " " + getUniqueIdentifier() + " successfully ingested."); } else { - logger.error(ModelLoaderMsgs.DISTRIBUTION_EVENT_ERROR, "Ingestion failed for " + getType().toString() + logErrorMsg("Ingestion failed for " + getType().toString() + " " + getUniqueIdentifier() + ". Rolling back distribution."); return false; } } else { - logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, - getType().toString() + " " + getUniqueIdentifier() + " already exists. Skipping ingestion."); + logInfoMsg(getType().toString() + " " + getUniqueIdentifier() + " already exists. Skipping ingestion."); } return true; @@ -83,6 +87,12 @@ public class NamedQueryArtifact extends AbstractModelArtifact { @Override public void rollbackModel(AaiRestClient aaiClient, ModelLoaderConfig config, String distId) { + // Gizmo is resilient and doesn't require a rollback. A redistribution will work fine even if + // the model is partially loaded. + if (config.useGizmo()) { + return; + } + // Best effort to delete. Nothing we can do in the event this fails. aaiClient.getAndDeleteResource(getNamedQueryUrl(config), distId); }