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=========================================================
21 package org.onap.so.bpmn.servicedecomposition.generalobjects;
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
28 import org.onap.so.logger.MsoLogger;
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;
37 @JsonRootName(value = "requestParameters")
38 @JsonInclude(Include.NON_DEFAULT)
39 public class RequestParameters implements Serializable {
41 private static final MsoLogger log = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, RequestParameters.class);
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;
53 public String getSubscriptionServiceType() {
54 return subscriptionServiceType;
57 public void setSubscriptionServiceType(String subscriptionServiceType) {
58 this.subscriptionServiceType = subscriptionServiceType;
60 @JsonProperty("aLaCarte")
61 public Boolean getALaCarte() {
64 @JsonProperty("aLaCarte")
65 public void setaLaCarte(Boolean aLaCarte) {
66 this.aLaCarte = aLaCarte;
69 public Boolean isaLaCarte() {
73 public String getPayload(){
76 public void setPayload(String value){
80 public List<Map<String, Object>> getUserParams() {
84 public void setUserParams(List<Map<String, Object>> userParams) {
85 this.userParams = userParams;
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);
100 @JsonInclude(Include.NON_NULL)
101 public String toJsonString(){
103 ObjectMapper mapper = new ObjectMapper();
104 mapper.setSerializationInclusion(Include.NON_NULL);
105 ObjectWriter ow = mapper.writer();
107 json = ow.writeValueAsString(this);
108 }catch (Exception e){
109 log.error("Unable to convert Sniro Manager Request to string", e);
115 public String toString() {
116 return "RequestParameters [subscriptionServiceType="
117 + subscriptionServiceType + ", userParams=" + userParams
118 + ", aLaCarte=" + aLaCarte + "]";