diff options
author | romaingimbert <romain.gimbert@orange.com> | 2019-10-22 10:04:13 +0200 |
---|---|---|
committer | romaingimbert <romain.gimbert@orange.com> | 2019-10-22 10:04:13 +0200 |
commit | 1b425ee2f891e41f129b6b3a9a32e86dfba1ba86 (patch) | |
tree | 7938442fc717044e7192867f44721b421abda2b1 | |
parent | 784caaab0f643aecede5b2d8e5f435d896c8ec17 (diff) |
productFamilyId : SO API evolution
- delete productFamilyId
Issue-ID: EXTAPI-340
Signed-off-by: romaingimbert <romain.gimbert@orange.com>
Change-Id: Ic89c6ab1ae6186d212c1ad382ec3bdaf7a1fc41c
-rw-r--r-- | src/main/java/org/onap/nbi/apis/serviceorder/model/consumer/RequestInfo.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/model/consumer/RequestInfo.java b/src/main/java/org/onap/nbi/apis/serviceorder/model/consumer/RequestInfo.java index a80b1ee..82fb2c7 100644 --- a/src/main/java/org/onap/nbi/apis/serviceorder/model/consumer/RequestInfo.java +++ b/src/main/java/org/onap/nbi/apis/serviceorder/model/consumer/RequestInfo.java @@ -19,8 +19,6 @@ public class RequestInfo { private String instanceName; - private String productFamilyId; - private String source; private boolean suppressRollback; @@ -35,14 +33,6 @@ public class RequestInfo { this.instanceName = instanceName; } - public String getProductFamilyId() { - return productFamilyId; - } - - public void setProductFamilyId(String productFamilyId) { - this.productFamilyId = productFamilyId; - } - public String getSource() { return source; } @@ -71,7 +61,6 @@ public class RequestInfo { public String toString() { return "RequestInfo{" + "instanceName='" + instanceName + '\'' + - ", productFamilyId='" + productFamilyId + '\'' + ", source='" + source + '\'' + ", suppressRollback=" + suppressRollback + ", requestorId='" + requestorId + '\'' + |