Fixing project and owning entity relationship endpoints
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / test / java / org / onap / so / aaisimulator / utils / TestConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.aaisimulator.utils;
21
22 import org.onap.so.aaisimulator.utils.Constants;
23
24 /**
25  * @author waqas.ikram@ericsson.com
26  *
27  */
28 public class TestConstants {
29
30     public static final String SERVICE_INSTANCES_URL = "/service-instances";
31
32     public static final String SERVICE_NAME = "ServiceTest";
33
34     public static final String SERVICE_INSTANCE_ID = "ccece8fe-13da-456a-baf6-41b3a4a2bc2b";
35
36     public static final String SERVICE_INSTANCE_URL =
37             SERVICE_INSTANCES_URL + "/service-instance/" + SERVICE_INSTANCE_ID;
38
39     public static final String SERVICE_TYPE = "vCPE";
40
41     public static final String SERVICE_SUBSCRIPTIONS_URL =
42             "/service-subscriptions/service-subscription/" + SERVICE_TYPE;
43
44     public static final String GLOBAL_CUSTOMER_ID = "DemoCustomer";
45
46     public static final String CUSTOMERS_URL = Constants.CUSTOMER_URL + GLOBAL_CUSTOMER_ID;
47
48     public static final String VNF_ID = "dfd02fb5-d7fb-4aac-b3c4-cd6b60058701";
49
50     public static final String GENERIC_VNF_NAME = "EsyVnfInstantiationTest2";
51
52     public static final String GENERIC_VNF_URL = Constants.GENERIC_VNFS_URL + "generic-vnf/";
53
54     public static final String GENERIC_VNFS_URL = "/generic-vnfs";
55
56     public static final String RELATED_TO_URL = "/related-to" + GENERIC_VNFS_URL;
57
58     public static final String PLATFORM_NAME = "PLATFORM_APP_ID_1";
59
60     public static final String LINE_OF_BUSINESS_NAME = "LINE_OF_BUSINESS_1";
61
62     public static final String CLOUD_OWNER_NAME = "CloudOwner";
63
64     public static final String CLOUD_REGION_NAME = "EtsiCloudRegion";
65
66     public static final String TENANT_ID = "693c7729b2364a26a3ca602e6f66187d";
67
68     public static final String TENANTS_TENANT = "/tenants/tenant/";
69
70     private TestConstants() {}
71
72 }