diff options
author | Byung-Woo Jun <byung-woo.jun@est.tech> | 2020-09-16 15:07:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-16 15:07:04 +0000 |
commit | 0ab91278941d329078eeacae106d742284e6817c (patch) | |
tree | 785097fd77dc40dba3d7bb7dbcb6c9d535a05984 /common/src | |
parent | 6b0ce265b86a8c4e7f5c572229d2559124c56a82 (diff) | |
parent | b710a2fd14ad1e9da3c0295836ed40dbc466fc7b (diff) |
Merge "Implement Deallocate RAN NSSI Workflow"
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/main/java/org/onap/so/beans/nsmf/DeAllocateNssi.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/common/src/main/java/org/onap/so/beans/nsmf/DeAllocateNssi.java b/common/src/main/java/org/onap/so/beans/nsmf/DeAllocateNssi.java index 1ee83c7db0..399d51e894 100644 --- a/common/src/main/java/org/onap/so/beans/nsmf/DeAllocateNssi.java +++ b/common/src/main/java/org/onap/so/beans/nsmf/DeAllocateNssi.java @@ -25,7 +25,6 @@ import java.util.List; @JsonInclude(JsonInclude.Include.NON_NULL) public class DeAllocateNssi { - @Deprecated public final static String URL = "/api/rest/provMns/v1/NSS" + "/SliceProfiles/%s"; @@ -42,6 +41,16 @@ public class DeAllocateNssi { private String extension; + private String sliceProfileId; + + public String getSliceProfileId() { + return sliceProfileId; + } + + public void setSliceProfileId(String sliceProfileId) { + this.sliceProfileId = sliceProfileId; + } + public String getNsiId() { return nsiId; } |