7a215a945867f78350a253e39b528f652805e451
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
21 package org.onap.so.adapters.catalogdb.catalogrest;
22
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27 import javax.xml.bind.annotation.XmlRootElement;
28 import org.onap.so.db.catalog.beans.AllottedResourceCustomization;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 @XmlRootElement(name = "serviceAllottedResources")
33 public class QueryAllottedResourceCustomization extends CatalogQuery {
34     protected static Logger logger = LoggerFactory.getLogger(QueryAllottedResourceCustomization.class);
35         private List<AllottedResourceCustomization> allottedResourceCustomization;
36         private static final String TEMPLATE =
37                 "\t{\n"+
38                 "\t\t\"modelInfo\"       : {\n"+
39                         "\t\t\t\"modelName\"              : <MODEL_NAME>,\n"+
40                         "\t\t\t\"modelUuid\"              : <MODEL_UUID>,\n"+
41                         "\t\t\t\"modelInvariantUuid\"     : <MODEL_INVARIANT_ID>,\n"+
42                         "\t\t\t\"modelVersion\"           : <MODEL_VERSION>,\n"+
43                         "\t\t\t\"modelCustomizationUuid\" : <MODEL_CUSTOMIZATION_UUID>,\n"+
44                         "\t\t\t\"modelInstanceName\"      : <MODEL_INSTANCE_NAME>\n"+
45                 "\t\t},\n"+
46                 "\t\t\"toscaNodeType\"                      : <TOSCA_NODE_TYPE>,\n"+ 
47                 "\t\t\"allottedResourceType\"               : <ALLOTTED_RESOURCE_TYPE>,\n"+ 
48                 "\t\t\"allottedResourceRole\"               : <ALLOTTED_RESOURCE_ROLE>,\n"+ 
49                 "\t\t\"providingServiceModelName\"          : <PROVIDING_SERVICE_MODEL_NAME>,\n"+ 
50                 "\t\t\"providingServiceModelInvariantUuid\" : <PROVIDING_SERVICE_MODEL_INVARIANT_UUID>,\n"+ 
51                 "\t\t\"providingServiceModelUuid\"          : <PROVIDING_SERVICE_MODEL_UUID>,\n"+ 
52                 "\t\t\"nfFunction\"                         : <NF_FUNCTION>,\n"+ 
53                 "\t\t\"nfType\"                             : <NF_TYPE>,\n"+ 
54                 "\t\t\"nfRole\"                             : <NF_ROLE>,\n"+ 
55                 "\t\t\"nfNamingCode\"                       : <NF_NAMING_CODE>\n"+ 
56             "\t}";
57
58         public QueryAllottedResourceCustomization() {
59             super();
60             allottedResourceCustomization = new ArrayList<>();
61         }
62         
63         public QueryAllottedResourceCustomization(List<AllottedResourceCustomization> vlist) {
64             allottedResourceCustomization = vlist; 
65         }
66
67         public List<AllottedResourceCustomization> getServiceAllottedResources(){ 
68             return this.allottedResourceCustomization; 
69         }
70         
71         public void setServiceAllottedResources(List<AllottedResourceCustomization> v) { 
72             this.allottedResourceCustomization = v; 
73         }
74
75         @Override
76         public String toString () {
77                 StringBuilder sb = new StringBuilder();
78
79                 boolean first = true;
80                 int i = 1;
81                 for (AllottedResourceCustomization o : allottedResourceCustomization) {
82                         sb.append(i).append("\t");
83                         if (!first) 
84                             sb.append("\n"); 
85                         
86                         first = false;
87                         sb.append(o);
88                 }
89                 return sb.toString();
90     }
91
92         @Override
93         public String JSON2(boolean isArray, boolean isEmbed) {
94                 StringBuilder sb = new StringBuilder();
95                 if (!isEmbed && isArray) 
96                     sb.append("{ ");
97                 if (isArray)
98                     sb.append("\"serviceAllottedResources\": [");
99                 Map<String, String> valueMap = new HashMap<>();
100                 String sep = "";
101                 boolean first = true;
102
103                 if (this.allottedResourceCustomization != null) {
104                 for (AllottedResourceCustomization o : allottedResourceCustomization) {
105                         if (first) 
106                             sb.append("\n");
107                         
108                         first = false;
109
110                                 boolean arNull = o.getAllottedResource() == null ? true : false;
111         
112                             put(valueMap, "MODEL_NAME",               arNull ? null : o.getAllottedResource().getModelName());
113                             put(valueMap, "MODEL_UUID",               arNull ? null : o.getAllottedResource().getModelUUID());
114                             put(valueMap, "MODEL_INVARIANT_ID",       arNull ? null : o.getAllottedResource().getModelInvariantUUID());
115                             put(valueMap, "MODEL_VERSION",            arNull ? null : o.getAllottedResource().getModelVersion());
116                     put(valueMap, "MODEL_CUSTOMIZATION_UUID", o.getModelCustomizationUUID());
117                     put(valueMap, "MODEL_INSTANCE_NAME",      o.getModelInstanceName());
118                             put(valueMap, "TOSCA_NODE_TYPE",      arNull ? null : o.getAllottedResource().getToscaNodeType());
119                             put(valueMap, "ALLOTTED_RESOURCE_TYPE",     arNull ? null : o.getAllottedResource().getSubcategory());
120                             put(valueMap, "ALLOTTED_RESOURCE_ROLE",     o.getTargetNetworkRole() != null ? o.getTargetNetworkRole() : o.getNfRole());
121                             put(valueMap, "NF_TYPE",     o.getNfType());
122                             put(valueMap, "NF_ROLE",     o.getNfRole());
123                             put(valueMap, "NF_FUNCTION",     o.getNfFunction());
124                             put(valueMap, "NF_NAMING_CODE",     o.getNfNamingCode());
125                             put(valueMap, "PROVIDING_SERVICE_MODEL_INVARIANT_UUID",     o.getProvidingServiceModelInvariantUUID());
126                             put(valueMap, "PROVIDING_SERVICE_MODEL_UUID",     o.getProvidingServiceModelUUID());
127                             put(valueMap, "PROVIDING_SERVICE_MODEL_NAME",     o.getProvidingServiceModelName());
128
129             sb.append(sep).append(this.setTemplate(TEMPLATE, valueMap));
130             sep = ",\n";
131                 }
132                 }
133                 if (!first)
134                     sb.append("\n");
135                 
136                 if (isArray)
137                     sb.append("]");
138                 
139                 if (!isEmbed && isArray)
140                     sb.append("}");
141                 
142                 return sb.toString();
143         }
144
145 }