/*- * ============LICENSE_START======================================================= * OPENECOMP - MSO * ================================================================================ * 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.adapters.catalogdb.catalogrest; import org.openecomp.mso.db.catalog.beans.NetworkResourceCustomization; import org.jboss.resteasy.annotations.providers.NoJackson; import javax.xml.bind.annotation.XmlRootElement; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; @XmlRootElement(name = "serviceNetworks") @NoJackson public class QueryServiceNetworks extends CatalogQuery { private List serviceNetworks; private final String template = "\t{ \"network\" : {\n"+ "\t\t\"modelName\" : ,\n"+ "\t\t\"modelUuid\" : ,\n"+ "\t\t\"modelInvariantUuid\" : ,\n"+ "\t\t\"modelVersion\" : ,\n"+ "\t\t\"modelCustomizationUuid\" : ,\n"+ "\t\t\"modelInstanceName\" : ,\n"+ "\t\t\"networkType\" : \n"+ "\t}}"; public QueryServiceNetworks() { super(); serviceNetworks = new ArrayList(); } public QueryServiceNetworks(List vlist) { LOGGER.debug ("QueryServiceNetworks:"); serviceNetworks = new ArrayList(); for (NetworkResourceCustomization o : vlist) { LOGGER.debug (o.toString()); serviceNetworks.add(o); LOGGER.debug ("-------------------"); } } public List getServiceNetworks(){ return this.serviceNetworks; } public void setServiceNetworks(List v) { this.serviceNetworks = v; } @Override public String toString () { StringBuffer buf = new StringBuffer(); boolean first = true; int i = 1; for (NetworkResourceCustomization o : serviceNetworks) { buf.append(i+"\t"); if (!first) buf.append("\n"); first = false; buf.append(o); } return buf.toString(); } @Override public String JSON2(boolean isArray, boolean isEmbed) { StringBuffer buf = new StringBuffer(); if (!isEmbed && isArray) buf.append("{ "); if (isArray) buf.append("\"serviceNetworks\": ["); Map valueMap = new HashMap(); String sep = ""; boolean first = true; for (NetworkResourceCustomization o : serviceNetworks) { if (first) buf.append("\n"); first = false; put(valueMap, "MODEL_NAME", o.getModelName()); put(valueMap, "MODEL_UUID", o.getModelUuid()); put(valueMap, "MODEL_INVARIANT_ID", o.getModelInvariantId()); put(valueMap, "MODEL_VERSION", o.getModelVersion()); put(valueMap, "MODEL_CUSTOMIZATION_UUID", o.getModelCustomizationUuid()); put(valueMap, "MODEL_INSTANCE_NAME", o.getModelInstanceName()); put(valueMap, "NETWORK_TYPE", o.getNetworkType()); buf.append(sep+ this.setTemplate(template, valueMap)); sep = ",\n"; } if (!first) buf.append("\n"); if (isArray) buf.append("]"); if (!isEmbed && isArray) buf.append("}"); return buf.toString(); } }