From cea67fafd905f169b8db5c4be0b47959b66c32e3 Mon Sep 17 00:00:00 2001 From: "Keighron, Lori (lk2924)" Date: Mon, 25 Nov 2019 14:17:57 -0500 Subject: Add new LCM actions GetConfig, StartTraffic, StopTraffic, etc New LCM actions Change-Id: Ic59607f2a7fc515bdd01be162018aaf695668f82 Issue-ID: APPC-1790 Signed-off-by: Keighron, Lori (lk2924) --- .../org/onap/appc/domainmodel/lcm/VNFOperation.java | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org') diff --git a/appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org/onap/appc/domainmodel/lcm/VNFOperation.java b/appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org/onap/appc/domainmodel/lcm/VNFOperation.java index e08e49630..2f7fbc2b2 100644 --- a/appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org/onap/appc/domainmodel/lcm/VNFOperation.java +++ b/appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org/onap/appc/domainmodel/lcm/VNFOperation.java @@ -39,16 +39,26 @@ public enum VNFOperation { ConfigRestore, ConfigScaleOut, DetachVolume, + DistributeTraffic, + DistributeTrafficCheck, Evacuate, + GetConfig, HealthCheck, + LicenseManagement, LiveUpgrade, Lock(true), Migrate, + PostEvacuate, + PostMigrate, + PostRebuild, + Provisioning, + PreConfigure, + PreEvacuate, + PreMigrate, + PreRebuild, Query, QuiesceTraffic, ResumeTraffic, - DistributeTraffic, - DistributeTrafficCheck, Reboot, Rebuild, Restart, @@ -57,8 +67,11 @@ public enum VNFOperation { SoftwareUpload, Start, StartApplication, + StartTraffic, + StatusTraffic, Stop, StopApplication, + StopTraffic, Sync, Terminate, Test, @@ -73,7 +86,7 @@ public enum VNFOperation { private boolean builtIn; VNFOperation() { - this.builtIn=false; + this.builtIn = false; } /** -- cgit 1.2.3-korg