diff options
author | Keighron, Lori (lk2924) <lk2924@att.com> | 2019-11-25 14:17:57 -0500 |
---|---|---|
committer | Keighron, Lori (lk2924) <lk2924@att.com> | 2019-11-26 15:47:49 -0500 |
commit | cea67fafd905f169b8db5c4be0b47959b66c32e3 (patch) | |
tree | 0b9020fc88d106916bb1e4b66667dea74ef6e701 /appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main | |
parent | 0f9c0df9e651bbcbdb3e4b8133f57abe2482cbec (diff) |
Add new LCM actions GetConfig, StartTraffic, StopTraffic, etc
New LCM actions
Change-Id: Ic59607f2a7fc515bdd01be162018aaf695668f82
Issue-ID: APPC-1790
Signed-off-by: Keighron, Lori (lk2924) <lk2924@att.com>
Diffstat (limited to 'appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main')
-rw-r--r-- | appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/main/java/org/onap/appc/domainmodel/lcm/VNFOperation.java | 19 |
1 files changed, 16 insertions, 3 deletions
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; } /** |