5e49ffcf40627879c6d50925264c6eb9db1f1843
[so.git] /
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
21 package org.onap.so.bpmn.servicedecomposition.generalobjects;
22
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
26 import java.util.Map;
27
28 import org.onap.so.logger.MsoLogger;
29
30 import com.fasterxml.jackson.annotation.JsonInclude;
31 import com.fasterxml.jackson.annotation.JsonInclude.Include;
32 import com.fasterxml.jackson.databind.ObjectMapper;
33 import com.fasterxml.jackson.databind.ObjectWriter;
34 import com.fasterxml.jackson.annotation.JsonProperty;
35 import com.fasterxml.jackson.annotation.JsonRootName;
36
37 @JsonRootName(value = "requestParameters")
38 @JsonInclude(Include.NON_DEFAULT)
39 public class RequestParameters implements Serializable {
40
41         private static final MsoLogger log = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, RequestParameters.class);
42
43         private static final long serialVersionUID = -5979049912538894930L;
44         @JsonProperty("subscriptionServiceType")
45         private String subscriptionServiceType;
46         @JsonProperty("userParams")
47         private List<Map<String, Object>> userParams = new ArrayList<>();
48         @JsonProperty("aLaCarte")
49         private Boolean aLaCarte;
50         @JsonProperty("payload")
51         private String payload;
52
53         public String getSubscriptionServiceType() {
54                 return subscriptionServiceType;
55         }
56
57         public void setSubscriptionServiceType(String subscriptionServiceType) {
58                 this.subscriptionServiceType = subscriptionServiceType;
59         }
60         @JsonProperty("aLaCarte")
61         public Boolean getALaCarte() {
62                 return aLaCarte;
63         }
64         @JsonProperty("aLaCarte")
65         public void setaLaCarte(Boolean aLaCarte) {
66                 this.aLaCarte = aLaCarte;
67         }
68
69         public Boolean isaLaCarte() {
70                 return aLaCarte;
71         }
72         
73         public String getPayload(){
74                 return payload;
75         }
76         public void setPayload(String value){
77                 this.payload = value;
78         }
79
80         public List<Map<String, Object>> getUserParams() {
81                 return userParams;
82         }
83
84         public void setUserParams(List<Map<String, Object>> userParams) {
85                 this.userParams = userParams;
86         }
87
88         public Object getUserParamValue(String name) {
89                 if (userParams != null) {
90                         for (Map<String, Object> param : userParams) {
91                                 if (param.get(name) != null) {
92                                         return param.get(name);
93                                 }
94                         }
95                 }
96                 return null;
97         }
98
99
100         @JsonInclude(Include.NON_NULL)
101         public String toJsonString(){
102                 String json = "";
103                 ObjectMapper mapper = new ObjectMapper();
104                 mapper.setSerializationInclusion(Include.NON_NULL);
105                 ObjectWriter ow = mapper.writer();
106                 try{
107                         json = ow.writeValueAsString(this);
108                 }catch (Exception e){
109                         log.error("Unable to convert Sniro Manager Request to string", e);
110                 }
111                 return json;
112         }
113
114         @Override
115         public String toString() {
116                 return "RequestParameters [subscriptionServiceType="
117                                 + subscriptionServiceType + ", userParams=" + userParams
118                                 + ", aLaCarte=" + aLaCarte + "]";
119         }
120 }