Network Inventory Client Updates
[appc.git] / appc-outbound / appc-network-inventory-client / provider / src / main / java / org / onap / appc / instar / utils / InstarClientConstant.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.instar.utils;
26
27 public class InstarClientConstant
28 {
29     public static String INPUT_PARAM_RESPONSE_PRIFIX = "responsePrefix";
30     public static String OUTPUT_PARAM_STATUS = "status";
31     public static String OUTPUT_PARAM_ERROR_MESSAGE = "error-message";
32     public static String OUTPUT_STATUS_SUCCESS = "success";
33     public static String OUTPUT_STATUS_FAILURE = "failure";
34
35     public static final String INSTAR_KEYS = "instarKeys";
36
37     public static final String INTERFACE_IP_ADDRESS = "interface-ip-address";
38     public static final String SOURCE_SYSTEM_INSTAR = "INSTAR";
39     public static final String VNF_TYPE = "vnf-type";
40     public static final String ADDRESSFDQN = "addressfqdn";
41     public static final String VNF_NAME = "vnf-name";
42     public static final String INSTAR_KEY_VALUES = "INSTAR-KEY-VALUES";
43     public static final String INSTAR_RESPONSE_BLOCK_NAME = "vnfConfigurationParameterDetails";
44     public static final String FDQN = "fqdn";
45
46
47     public static final String MOCK_INSTAR="mock_instar";
48     public static final String AFT_LATITUDE="aft_latitude";
49     public static final String AFT_LONGITUDE="aft_latitude";
50     public static final String AFT_ENVIRONMENT="aft_environment";
51     public static final String SCLD_PLATFORM="scld_platform";
52     public static final String AUTHORIZATION="authorization";
53     public static final String DME2_CLIENT_TIMEOUTMS="dme2_client_timeoutms";
54     public static final String DME2_CLIENT_SENDANDWAIT="dme2_client_sendandwait";
55     public static final String BASE_URL="_base_url";
56     public static final String HTTP_HEADERS="_http_headers";
57
58     public static final String V6_ADDRESS="ipaddress-v6";
59     public static final String INSTAR_V6_ADDRESS="v6IPAddress";
60     public static final String INSTAR_V6_SUBNET="v6Subnet";
61     public static final String INSTAR_V6_DEFAULT_GATEWAY="v6DefaultGateway";
62
63     public static final String V4_ADDRESS="ipaddress-v4";
64     public static final String INSTAR_V4_ADDRESS="v4IPAddress";
65     public static final String INSTAR_V4_SUBNET="v4Subnet";
66     public static final String INSTAR_V4_DEFAULT_GATEWAY="v4DefaultGateway";
67     public static final String  SUB_CONTEXT_BYIPADDRESS="_sub_context_byipaddress";
68     public static final String SUB_CONTEXT_BYMASK="_sub_context_bymask";
69     public static final String SUB_CONTEXT="_sub_context";
70     public static final String URL_SUFFIX="_suffix";
71     public static final String VERSION="_version";
72     public static final String ENV_CONTEXT="_env_context";
73     public static final String ROUTEOFFER="_routeoffer";
74     public static final String APPC_PROPERTIES = "appc.properties";
75     public static final String METHOD="_method";
76     public static final String OPERATION_GET_IPADDRESS_BY_VNF_NAME = "getIpAddressByVnf";
77
78     public static final String OUTBOUND_PROPERTIES= "/outbound.properties";
79
80     public static String CONTENT_TYPE = "application/json";
81     public static String RETURNED_RESPONSE_TYPE = "application/json";
82
83 }
84