From a897a9d3543ff16c0c9f313fd7a8287f4bb86664 Mon Sep 17 00:00:00 2001 From: Harry Huang Date: Mon, 2 Mar 2020 17:09:53 +0800 Subject: Add ServiceProfile Issue-ID: SO-2368 Add bean to store ServiceProfile in NSMF workflow Change-Id: I4dc80090d283939450ffd1d72333d566f3f91b28 Signed-off-by: Harry Huang --- .../org/onap/so/beans/nsmf/ServiceProfile.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 common/src/main/java/org/onap/so/beans/nsmf/ServiceProfile.java (limited to 'common') 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 index 0000000000..cc6c9bbb82 --- /dev/null +++ b/common/src/main/java/org/onap/so/beans/nsmf/ServiceProfile.java @@ -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 serviceProfile; + + @JsonProperty("service-profile") + public Map getServiceProfile() { + return serviceProfile; + } + + @JsonProperty("service-profile") + public void setServiceProfile(Map serviceProfile) { + this.serviceProfile = serviceProfile; + } +} + -- cgit 1.2.3-korg