[MSO-8] Update the maven dependency
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / catalogrest / QueryAllottedResourceCustomization.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.AllottedResourceCustomization;
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 = "serviceAllottedResources")
32 @NoJackson
33 public class QueryAllottedResourceCustomization {
34         private static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
35         private List<AllottedResourceCustomization> allottedResourceCustomization;
36
37         public QueryAllottedResourceCustomization() { super(); allottedResourceCustomization = new ArrayList<AllottedResourceCustomization>(); }
38         public QueryAllottedResourceCustomization(List<AllottedResourceCustomization> vlist) { allottedResourceCustomization = vlist; }
39
40         public List<AllottedResourceCustomization> getServiceAllottedResources(){ return this.allottedResourceCustomization; }
41         public void setServiceAllottedResources(List<AllottedResourceCustomization> v) { this.allottedResourceCustomization = v; }
42
43         @Override
44         public String toString () {
45                 StringBuffer buf = new StringBuffer();
46
47                 boolean first = true;
48                 int i = 1;
49                 for (AllottedResourceCustomization o : allottedResourceCustomization) {
50                         buf.append(i+"\t");
51                         if (!first) buf.append("\n"); first = false;
52                         buf.append(o);
53                 }
54                 return buf.toString();
55     }
56
57         public String toJsonString() {
58                 String jsonString = null;
59                 try {
60                         ObjectMapper mapper = new ObjectMapper();
61                         jsonString = mapper.writeValueAsString(this);
62                         LOGGER.debug ("AllottedResourceCustomization jsonString: "+jsonString);
63                 }
64                 catch (Exception e) {
65                         LOGGER.debug ("AllottedResourceCustomization jsonString exception:"+e.getMessage());
66                 }
67                 return jsonString;
68         }
69 }