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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  20 package org.onap.so.aaisimulator.utils;
 
  22 import org.onap.so.aaisimulator.utils.Constants;
 
  25  * @author waqas.ikram@ericsson.com
 
  28 public class TestConstants {
 
  30     public static final String SERVICE_INSTANCES_URL = "/service-instances";
 
  32     public static final String SERVICE_NAME = "ServiceTest";
 
  34     public static final String SERVICE_INSTANCE_ID = "ccece8fe-13da-456a-baf6-41b3a4a2bc2b";
 
  36     public static final String SERVICE_INSTANCE_URL =
 
  37             SERVICE_INSTANCES_URL + "/service-instance/" + SERVICE_INSTANCE_ID;
 
  39     public static final String SERVICE_TYPE = "vCPE";
 
  41     public static final String SERVICE_SUBSCRIPTIONS_URL =
 
  42             "/service-subscriptions/service-subscription/" + SERVICE_TYPE;
 
  44     public static final String GLOBAL_CUSTOMER_ID = "DemoCustomer";
 
  46     public static final String CUSTOMERS_URL = Constants.CUSTOMER_URL + GLOBAL_CUSTOMER_ID;
 
  48     public static final String RELATIONSHIP_URL = "/relationship-list/relationship";
 
  50     public static final String VNF_ID = "dfd02fb5-d7fb-4aac-b3c4-cd6b60058701";
 
  52     public static final String GENERIC_VNF_NAME = "EsyVnfInstantiationTest2";
 
  54     public static final String GENERIC_VNF_URL = Constants.GENERIC_VNFS_URL + "/generic-vnf/";
 
  56     public static final String GENERIC_VNFS_URL = "/generic-vnfs";
 
  58     public static final String RELATED_TO_URL = "/related-to" + GENERIC_VNFS_URL;
 
  60     public static final String PLATFORM_NAME = "PLATFORM_APP_ID_1";
 
  62     public static final String LINE_OF_BUSINESS_NAME = "LINE_OF_BUSINESS_1";
 
  64     public static final String CLOUD_OWNER_NAME = "CloudOwner";
 
  66     public static final String CLOUD_REGION_NAME = "EtsiCloudRegion";
 
  68     private TestConstants() {}