Adding basic auth support to sdc sim
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / main / java / org / onap / so / sdc / simulator / utils / Constants.java
1 /*
2  * ============LICENSE_START======================================================= Copyright (C) 2019 Nordix
3  * Foundation. ================================================================================ Licensed under the
4  * Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may
5  * obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11  * specific language governing permissions and limitations under the License.
12  *
13  * SPDX-License-Identifier: Apache-2.0 ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.sdc.simulator.utils;
17
18 /**
19  * @author Waqas Ikram (waqas.ikram@est.tech)
20  */
21 public class Constants {
22
23     public static final String BASE_URL = "/sdc/v1";
24
25     public static final String CATALOG_URL = BASE_URL + "/catalog";
26
27     public static final String HEALTHY = "healthy";
28
29     public static final String DEFAULT_CSAR_NAME = "default_csar_file";
30
31     public static final String DOT = ".";
32
33     public static final String DOT_CSAR = DOT + "csar";
34
35     public static final String DEFAULT_CSAR_NAME_WITH_EXT = DEFAULT_CSAR_NAME + DOT_CSAR;
36
37     public static final String DEFAULT_CSAR_PATH = "/csar/" + DEFAULT_CSAR_NAME_WITH_EXT;
38
39
40     private Constants() {}
41 }