diff options
author | Balaji, Ramya (rb111y) <rb111y@att.com> | 2018-11-08 12:38:38 -0500 |
---|---|---|
committer | Balaji, Ramya (rb111y) <rb111y@att.com> | 2018-11-08 12:39:35 -0500 |
commit | 82c049edee42af368a3758e1d8bb4ab1d0558298 (patch) | |
tree | 77212e43320c135e91795a741c7692a44d49aec9 /appc-dispatcher/appc-request-handler/appc-request-handler-core | |
parent | 2d1632f1c930b02f567b4650cc7f27a40f1dfe1b (diff) |
Code modification attempts to fix issue1.4.1
Issue-ID: APPC-1231
Change-Id: I710487b70624b1f4736de29f84f627a8f7a2ccf7
Signed-off-by: Balaji, Ramya (rb111y) <rb111y@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 | 5 |
1 files changed, 3 insertions, 2 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 84605ff53..2bfc912f1 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 @@ -75,8 +75,9 @@ public class Converter { if(vnfOperation == null){ throw new IllegalArgumentException("empty asyncResponse.action"); } - logger.debug("Entered Converter.convAsyncResponseToBuilder()"); - Action action = Action.valueOf(vnfOperation.name()); + logger.debug("Entered Converter.convAsyncResponseToBuilder() : Operation Name "+ vnfOperation.name()); + org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.Action action = org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.Action.valueOf(vnfOperation.name()); + logger.debug("After resolving action"); CommonHeader commonHeader = convAsyncResponseTorev160108CommonHeader(response); Status status = convAsyncResponseTorev160108Status(response); Payload payload = convAsyncResponseTorev160108Payload(response); |