From 7cba26258ea17f790028a7005cb9bbbdc3923389 Mon Sep 17 00:00:00 2001 From: Koren Lev Date: Tue, 24 Oct 2017 13:35:42 +0300 Subject: several bug fixes for release 1.1 Change-Id: I433d41245107a68959efdcd6b56ce3348c7bbeb5 Signed-off-by: Koren Lev --- app/utils/constants.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'app/utils') diff --git a/app/utils/constants.py b/app/utils/constants.py index 01bf09f..5b53921 100644 --- a/app/utils/constants.py +++ b/app/utils/constants.py @@ -18,6 +18,20 @@ class StringEnum(Enum): return repr(self.value) +class ConnectionTestType(StringEnum): + AMQP = "AMQP" + CLI = "CLI" + ACI = "ACI" + MYSQL = "mysql" + OPENSTACK = "OpenStack" + MONITORING = "Monitoring" + + +class ConnectionTestStatus(StringEnum): + REQUEST = "request" + RESPONSE = "response" + + class ScanStatus(StringEnum): DRAFT = "draft" PENDING = "pending" -- cgit 1.2.3-korg