[MSO-8] Update the maven dependency
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / catalogrest / QueryServiceNetworks.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20 package org.openecomp.mso.adapters.catalogrest;
21
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;
26
27 import javax.xml.bind.annotation.XmlRootElement;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 @XmlRootElement(name = "serviceNetworks")
32 @NoJackson
33 public class QueryServiceNetworks {
34         private static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
35         private List<NetworkResourceCustomization> serviceNetworks;
36
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 ("-------------------");
46                 }
47         }
48
49         public List<NetworkResourceCustomization> getServiceNetworks(){ return this.serviceNetworks; }
50         public void setServiceNetworks(List<NetworkResourceCustomization> v) { this.serviceNetworks = v; }
51
52         @Override
53         public String toString () {
54                 StringBuffer buf = new StringBuffer();
55
56                 boolean first = true;
57                 int i = 1;
58                 for (NetworkResourceCustomization o : serviceNetworks) {
59                         buf.append(i+"\t");
60                         if (!first) buf.append("\n"); first = false;
61                         buf.append(o);
62                 }
63                 return buf.toString();
64     }
65
66         public String toJsonString() {
67                 String jsonString = null;
68                 try {
69                         ObjectMapper mapper = new ObjectMapper();
70                         jsonString = mapper.writeValueAsString(this);
71                         LOGGER.debug ("QueryServiceNetworks jsonString: "+jsonString);
72                 }
73                 catch (Exception e) {
74                         LOGGER.debug ("QueryServiceNetworks jsonString exception:"+e.getMessage());
75                 }
76                 return jsonString;
77         }
78 }