From: Alexey Sandler Date: Wed, 11 Sep 2019 12:53:30 +0000 (+0300) Subject: add Feature Flag for cloud-region and nf-role as an optional search X-Git-Tag: 5.0.3~11 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=4996ccfb67d22533da5d5021284e41b6612e4aec;p=vid.git add Feature Flag for cloud-region and nf-role as an optional search Issue-ID: VID-596 Signed-off-by: Alexey Sandler Change-Id: I36e5ea4842816dfa8a6734299bf667150600a375 --- diff --git a/features.properties.md b/features.properties.md index a61893f29..7b2250b94 100644 --- a/features.properties.md +++ b/features.properties.md @@ -167,7 +167,6 @@ * FLAG_1908_MACRO_NOT_TRANSPORT_NEW_VIEW_EDIT Enable New UI on View Edit for Macro, NON TRANSPORT services - - - +* FLAG_FLASH_CLOUD_REGION_AND_NF_ROLE_OPTIONAL_SEARCH + Add cloud-region and nf-role as an optional search criteria fields when fetching VNF details. \ No newline at end of file diff --git a/vid-app-common/src/main/java/org/onap/vid/properties/Features.java b/vid-app-common/src/main/java/org/onap/vid/properties/Features.java index a400a6168..394fc9cd4 100644 --- a/vid-app-common/src/main/java/org/onap/vid/properties/Features.java +++ b/vid-app-common/src/main/java/org/onap/vid/properties/Features.java @@ -75,6 +75,7 @@ public enum Features implements Feature { FLAG_HANDLE_SO_WORKFLOWS, FLAG_CREATE_ERROR_REPORTS, FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT, + FLAG_FLASH_CLOUD_REGION_AND_NF_ROLE_OPTIONAL_SEARCH, ; diff --git a/vid-app-common/src/main/webapp/WEB-INF/conf/dev.features.properties b/vid-app-common/src/main/webapp/WEB-INF/conf/dev.features.properties index ae57a3175..70eaae964 100644 --- a/vid-app-common/src/main/webapp/WEB-INF/conf/dev.features.properties +++ b/vid-app-common/src/main/webapp/WEB-INF/conf/dev.features.properties @@ -32,3 +32,4 @@ FLAG_1810_AAI_LOCAL_CACHE = true FLAG_1902_NEW_VIEW_EDIT= false FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER = false FLAG_1902_VNF_GROUPING = true +FLAG_FLASH_CLOUD_REGION_AND_NF_ROLE_OPTIONAL_SEARCH=false \ No newline at end of file diff --git a/vid-automation/src/main/java/vid/automation/test/infra/Features.java b/vid-automation/src/main/java/vid/automation/test/infra/Features.java index 6ba3151a1..ff187d6c6 100644 --- a/vid-automation/src/main/java/vid/automation/test/infra/Features.java +++ b/vid-automation/src/main/java/vid/automation/test/infra/Features.java @@ -51,6 +51,7 @@ public enum Features implements Feature { FLAG_HANDLE_SO_WORKFLOWS, FLAG_CREATE_ERROR_REPORTS, FLAG_FLASH_MORE_ACTIONS_BUTTON_IN_OLD_VIEW_EDIT, + FLAG_FLASH_CLOUD_REGION_AND_NF_ROLE_OPTIONAL_SEARCH, ; public boolean isActive() { diff --git a/vid-automation/src/test/resources/features.properties b/vid-automation/src/test/resources/features.properties index 7c5f0e470..36c72374a 100644 --- a/vid-automation/src/test/resources/features.properties +++ b/vid-automation/src/test/resources/features.properties @@ -32,3 +32,4 @@ FLAG_1906_INSTANTIATION_API_USER_VALIDATION = true FLAG_1908_RESUME_MACRO_SERVICE=true FLAG_1908_RELEASE_TENANT_ISOLATION=true FLAG_1908_MACRO_NOT_TRANSPORT_NEW_VIEW_EDIT=true +FLAG_FLASH_CLOUD_REGION_AND_NF_ROLE_OPTIONAL_SEARCH=false