aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/vid/automation/test/utils/TestHelper.java
blob: 83876fa2786f56c47133ba77cc4275c8e7889fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package vid.automation.test.utils;

import org.springframework.web.client.RestTemplate;

import java.net.URI;

public class TestHelper {

    public static String GET_SERVICE_MODELS_BY_DISTRIBUTION_STATUS = "getServiceModelsByDistributionStatus";
    public static String GET_TENANTS = "getTenants";

    public static void resetAaiCache(String cacheName, RestTemplate restTemplate, URI vidUri) {
        restTemplate.delete(vidUri + "/aai_reset_cache/"+cacheName);
    }
}