diff options
author | zm330 <zhangminyj@chinamobile.com> | 2020-02-29 01:25:21 +0800 |
---|---|---|
committer | zm330 <zhangminyj@chinamobile.com> | 2020-02-29 01:25:49 +0800 |
commit | 79ad43bf4c95ce0ef5de38925e667ed44ea02b7e (patch) | |
tree | aae9d7ed9fe6e28686ca2104e59a5fac30d32643 /mso-api-handlers/mso-api-handler-common/src | |
parent | 816cb9070dab89b4a0f513aacc6cab3c0f4db51a (diff) |
Add Slice Service Activate Request
Issue-ID: SO-2368
Signed-off-by: zm330 <zhangminyj@chinamobile.com>
Change-Id: Id9d0b295b115e3639ebdbcf5287ea240ceb9eca7
Diffstat (limited to 'mso-api-handlers/mso-api-handler-common/src')
-rw-r--r-- | mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandler/common/RequestClientParameter.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandler/common/RequestClientParameter.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandler/common/RequestClientParameter.java index 3cf3907424..2101252ad0 100644 --- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandler/common/RequestClientParameter.java +++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandler/common/RequestClientParameter.java @@ -45,6 +45,7 @@ public class RequestClientParameter { private String requestUri; private String instanceGroupId; private boolean generateIdsOnly; + private String operationType; private RequestClientParameter(Builder builder) { requestId = builder.requestId; @@ -69,6 +70,11 @@ public class RequestClientParameter { requestUri = builder.requestUri; instanceGroupId = builder.instanceGroupId; generateIdsOnly = builder.generateIdsOnly; + operationType = builder.operationType; + } + + public String getOperationType() { + return operationType; } public String getRequestId() { @@ -186,6 +192,12 @@ public class RequestClientParameter { private String requestUri; private String instanceGroupId; private boolean generateIdsOnly; + private String operationType; + + public Builder setOperationType(String operationType) { + this.operationType = operationType; + return this; + } public Builder setRequestId(String requestId) { this.requestId = requestId; @@ -302,4 +314,6 @@ public class RequestClientParameter { } } + + } |