diff options
author | vamshi.nemalikonda <vn00480215@techmahindra.com> | 2019-04-10 16:37:08 +0530 |
---|---|---|
committer | Vamshi Krishna Namilikonda <vn00480215@techmahindra.com> | 2019-04-10 13:43:26 +0000 |
commit | 92fc7744a4df901d1688b9fa8da899372ea76fd8 (patch) | |
tree | 4824e50b33023963d8c0977147f3236cdc8e8cc1 /controlloop/common/guard | |
parent | 776b69ebd28440f84a890b1d4170af77ca5974ff (diff) |
Parse new model ids from operation policy
Takes VFModule info from policy yaml,instead AAI.
Change-Id: If745b3ba32562cbc37571cea29ec7797ee697e88
Issue-ID: POLICY-1545
Signed-off-by: vamshi.nemalikonda <vn00480215@techmahindra.com>
Diffstat (limited to 'controlloop/common/guard')
-rw-r--r-- | controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuard.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuard.java b/controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuard.java index 7ae0e7eb2..90e6e8753 100644 --- a/controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuard.java +++ b/controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuard.java @@ -3,6 +3,7 @@ * guard * ================================================================================ * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019 Tech Mahindra * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -108,6 +109,12 @@ public class PolicyGuard { // Create the Lock object // return new VnfTargetLock(targetType, targetInstance, requestId, callback); + + case VFMODULE: + // + // Create the Lock object + // + return new VnfTargetLock(targetType, targetInstance, requestId, callback); default: logger.error("invalid target type {} for lock on {}", targetType, targetInstance); return null; |