Merge "Add volumes for VNFM-adapter in docker-compose file"
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / main / java / org / onap / so / sdc / simulator / Constant.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;
17
18 /**
19  * @author Waqas Ikram (waqas.ikram@est.tech)
20  */
21 public class Constant {
22
23     public static final String BASE_URL = "/simulator/sdc/v1/catalog";
24
25     public static final String HEALTHY = "healthy";
26
27     public static final String DEFAULT_CSAR_NAME = "default_csar_file";
28
29     public static final String DOT = ".";
30
31     public static final String DOT_CSAR = DOT + "csar";
32
33     public static final String DEFAULT_CSAR_NAME_WITH_EXT = DEFAULT_CSAR_NAME + DOT_CSAR;
34
35     public static final String DEFAULT_CSAR_PATH = "/csar/" + DEFAULT_CSAR_NAME_WITH_EXT;
36
37
38     private Constant() {
39     }
40 }