2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  20 package org.openecomp.mso.adapters.catalogrest;
 
  22 import org.openecomp.mso.db.catalog.beans.NetworkResourceCustomization;
 
  23 import org.openecomp.mso.logger.MsoLogger;
 
  24 import org.codehaus.jackson.map.ObjectMapper;
 
  25 import org.jboss.resteasy.annotations.providers.NoJackson;
 
  27 import javax.xml.bind.annotation.XmlRootElement;
 
  28 import java.util.ArrayList;
 
  29 import java.util.List;
 
  31 @XmlRootElement(name = "serviceNetworks")
 
  33 public class QueryServiceNetworks {
 
  34         private static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
 
  35         private List<NetworkResourceCustomization> serviceNetworks;
 
  37         public QueryServiceNetworks() { super(); serviceNetworks = new ArrayList<NetworkResourceCustomization>(); }
 
  38         public QueryServiceNetworks(List<NetworkResourceCustomization> vlist) {
 
  39                 LOGGER.debug ("QueryServiceNetworks:");
 
  40                 serviceNetworks = new ArrayList<NetworkResourceCustomization>();
 
  41                 for (NetworkResourceCustomization o : vlist) {
 
  42                         LOGGER.debug ("-- o is a  serviceNetworks ----");
 
  43                         LOGGER.debug (o.toString());
 
  44                         serviceNetworks.add(o);
 
  45                         LOGGER.debug ("-------------------");
 
  49         public List<NetworkResourceCustomization> getServiceNetworks(){ return this.serviceNetworks; }
 
  50         public void setServiceNetworks(List<NetworkResourceCustomization> v) { this.serviceNetworks = v; }
 
  53         public String toString () {
 
  54                 StringBuffer buf = new StringBuffer();
 
  58                 for (NetworkResourceCustomization o : serviceNetworks) {
 
  60                         if (!first) buf.append("\n"); first = false;
 
  63                 return buf.toString();
 
  66         public String toJsonString() {
 
  67                 String jsonString = null;
 
  69                         ObjectMapper mapper = new ObjectMapper();
 
  70                         jsonString = mapper.writeValueAsString(this);
 
  71                         LOGGER.debug ("QueryServiceNetworks jsonString: "+jsonString);
 
  74                         LOGGER.debug ("QueryServiceNetworks jsonString exception:"+e.getMessage());