diff options
author | vidhyasree <sn141y@att.com> | 2018-02-21 11:19:33 -0500 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-02-22 18:04:35 +0000 |
commit | 6cf060d13e4a06894db3050ed23e4e7667fb021f (patch) | |
tree | 078a7e8980cf73c23402f0637a93ab6ae2d90c1c /appc-dispatcher/appc-request-handler/appc-request-handler-core | |
parent | 446bae37c2f6dabe842cb2b6585a17bcec327a17 (diff) |
Task to add ConfigScaleOut to LCM API, Yang Model.
A new action ConfigScaleOut is added to LCM API and Yang model.
Removed old action item configscaleout supporting VM action level
which is no longer needed.
Issue-ID: APPC-479
Change-Id: Ie5452f4d5625fc3be6b66c0f403d12baa64fa096
Signed-off-by: vidhyasree <sn141y@att.com>
Diffstat (limited to 'appc-dispatcher/appc-request-handler/appc-request-handler-core')
-rw-r--r-- | appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java index f169a7359..68352c1b1 100644 --- a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java +++ b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP : APPC * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= @@ -125,10 +125,10 @@ public class Converter { ((ConfigModifyOutputBuilder)outObj).setPayload(payload); return outObj; case ConfigScaleOut: - outObj = new ConfigScaleoutOutputBuilder(); - ((ConfigScaleoutOutputBuilder)outObj).setCommonHeader(commonHeader); - ((ConfigScaleoutOutputBuilder)outObj).setStatus(status); - ((ConfigScaleoutOutputBuilder)outObj).setPayload(payload); + outObj = new ConfigScaleOutOutputBuilder(); + ((ConfigScaleOutOutputBuilder)outObj).setCommonHeader(commonHeader); + ((ConfigScaleOutOutputBuilder)outObj).setStatus(status); + ((ConfigScaleOutOutputBuilder)outObj).setPayload(payload); return outObj; case ConfigRestore: outObj = new ConfigRestoreOutputBuilder(); |