summaryrefslogtreecommitdiffstats
path: root/ui-ci/src/main/java/org/openecomp/sdc/ci/tests/pages/UpgradeServicesPopup.java
blob: 89c36e5d9e98c4061dd4d5cfda0ce71b0ef2d898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.ci.tests.pages;

public class UpgradeServicesPopup {
    static boolean isUpgradePopupShown;

    public static boolean isUpgradePopupShown() {
        return isUpgradePopupShown;
    }

    public static void setUpgradePopupShown(boolean upgradePopupShown) {
        isUpgradePopupShown = upgradePopupShown;
    }
}