diff options
author | Tomek Osinski <tomasz.osinski2@orange.com> | 2018-09-12 15:10:08 +0200 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-09-17 20:16:32 +0000 |
commit | 3c0def26b386b2bc48ec7b6c0f53064bd270ce63 (patch) | |
tree | 6adbae9ba6fd9771991ffc30a5d6b040b88e312a /appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main | |
parent | d90ba5c3b7237131a47ad835ab19f42110166a73 (diff) |
Adding DistributeTraffic LCM API
This commit contains code modifications for APPC to support DistributeTraffic LCM API. Tests has been implemented for new service.
Change-Id: I853120eced93928268074cf89dd62fb89fea9ff8
Issue-ID: APPC-1169
Signed-off-by: Tomek Osinski <tomasz.osinski2@orange.com>
Diffstat (limited to 'appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main')
-rw-r--r-- | appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/requesthandler/conv/Converter.java | 7 |
1 files changed, 7 insertions, 0 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 0b8002b1b..1071b7605 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 @@ -5,6 +5,8 @@ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs + * ================================================================================ + * Modifications Copyright (C) 2018 Orange * ============================================================================= * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -271,6 +273,11 @@ public class Converter { ((DetachVolumeOutputBuilder)outObj).setCommonHeader(commonHeader); ((DetachVolumeOutputBuilder)outObj).setStatus(status); return outObj; + case DistributeTraffic: + outObj = new DistributeTrafficOutputBuilder(); + ((DistributeTrafficOutputBuilder)outObj).setCommonHeader(commonHeader); + ((DistributeTrafficOutputBuilder)outObj).setStatus(status); + return outObj; default: throw new IllegalArgumentException(action+" action is not supported"); } |