Add ServiceProfile 27/102727/1
authorHarry Huang <huangxiangyu5@huawei.com>
Mon, 2 Mar 2020 09:09:53 +0000 (17:09 +0800)
committerHarry Huang <huangxiangyu5@huawei.com>
Mon, 2 Mar 2020 09:09:53 +0000 (17:09 +0800)
Issue-ID: SO-2368

Add bean to store ServiceProfile in NSMF
workflow

Change-Id: I4dc80090d283939450ffd1d72333d566f3f91b28
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
common/src/main/java/org/onap/so/beans/nsmf/ServiceProfile.java [new file with mode: 0644]

diff --git a/common/src/main/java/org/onap/so/beans/nsmf/ServiceProfile.java b/common/src/main/java/org/onap/so/beans/nsmf/ServiceProfile.java
new file mode 100644 (file)
index 0000000..cc6c9bb
--- /dev/null
@@ -0,0 +1,50 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2020 Huawei Technologies Co., Ltd. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.so.beans.nsmf;
+
+import java.io.Serializable;
+import java.util.HashMap;
+import java.util.Map;
+import com.fasterxml.jackson.annotation.JsonAnyGetter;
+import com.fasterxml.jackson.annotation.JsonAnySetter;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonPropertyOrder({"service-profile"})
+public class ServiceProfile implements Serializable {
+
+    @JsonProperty("service-profile")
+    private Map<String, Object> serviceProfile;
+
+    @JsonProperty("service-profile")
+    public Map<String, Object> getServiceProfile() {
+        return serviceProfile;
+    }
+
+    @JsonProperty("service-profile")
+    public void setServiceProfile(Map<String, Object> serviceProfile) {
+        this.serviceProfile = serviceProfile;
+    }
+}
+