2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
\r
5 * in compliance with the License. You may obtain a copy of the License at
\r
7 * http://www.apache.org/licenses/LICENSE-2.0
\r
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
\r
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
\r
11 * or implied. See the License for the specific language governing permissions and limitations under
\r
15 package org.onap.ccsdk.config.data.adaptor;
\r
17 @SuppressWarnings("squid:S1118")
\r
18 public class DataAdaptorConstants {
\r
20 public static final String OUTPUT_STATUS_SUCCESS = "success";
\r
21 public static final String OUTPUT_STATUS_FAILURE = "failure";
\r
23 public static final String PROPERTY_ENV_TYPE = "org.onap.ccsdk.config.rest.adaptors.envtype";
\r
24 public static final String PROPERTY_ENV_PROD = "field";
\r
25 public static final String PROPERTY_ENV_SOLO = "solo";
\r
27 public static final String INPUT_PARAM_TAGS = "tags";
\r
28 public static final String INPUT_PARAM_CAPABILITY_NAME = "capabilityName";
\r
29 public static final String INPUT_PARAM_MESSAGE = "message";
\r
30 public static final String INPUT_PARAM_MESSAGE_TYPE = "messageType";
\r
31 public static final String OUTPUT_PARAM_STATUS = "status";
\r
32 public static final String OUTPUT_PARAM_ERROR_MESSAGE = "error-message";
\r
33 public static final String INPUT_PARAM_FILE_CATEGORY = "fileCategory";
\r
34 public static final String INPUT_PARAM_VM_INSTANCE = "vmInstance";
\r
35 public static final String INPUT_PARAM_ASDC_ARTIFACT_IND = "asdcArtifactInd";
\r
36 public static final Object INPUT_PARAM_VNF_ID = "vnfId";
\r
37 public static final Object INPUT_PARAM_VM_NAME = "vmName";
\r
39 public static final Object INPUT_PARAM_CONFIG_CONTENT_TYPE = "configContentType";
\r
41 public static final Object INPUT_PARAM_CONFIG_CONTENT = "configContent";
\r
42 public static final Object INPUT_PARAM_CONFIG_INDICATOR = "configIndicator";
\r
44 public static final Object CONFIG_CONTENT_TYPE_CONFIGURATION = "Configuration";
\r
45 public static final Object CONFIG_CONTENT_TYPE_PARAMETERS = "Parameters";
\r
46 public static final Object CONFIG_INDICATOR_PREPARE = "Prepare";
\r
47 public static final Object CONFIG_INDICATOR_ACTIVE = "Active";
\r
49 public static final String INPUT_PARAM_RESPONSE_PRIFIX = "response-prefix";
\r
50 public static final String INPUT_PARAM_VNF_TYPE = "vnfType";
\r
51 public static final String INPUT_PARAM_VNFC_TYPE = "vnfcType";
\r
52 public static final String INPUT_PARAM_ACTION = "action";
\r
53 public static final String INPUT_PARAM_API_VERSION = "apiVersion";
\r
55 public static final String INPUT_PARAM_FILE_ID = "fileId";
\r
56 public static final String INPUT_PARAM_UPLOAD_CONFIG_ID = "uploadConfigId";
\r
57 public static final String FILE_CATEGORY_SERVICE_TEMPLATE = "service_template";
\r
59 public static final String ARTIFACT_TYPE_SDNC_MODEL = "SDNC_MODEL";
\r
61 public static final String LOG_MESSAGE_TYPE_LOG = "Log";
\r
62 public static final String LOG_MESSAGE_TYPE_COMPONENT = "Component";
\r
63 public static final String LOG_MESSAGE_TYPE_REQUEST = "Request";
\r
64 public static final String LOG_MESSAGE_TYPE_MODEL = "Model";
\r
65 public static final String LOG_MESSAGE_TYPE_DATA = "Data";
\r
66 public static final String LOG_MESSAGE_TYPE_CONFIG = "Config";
\r
68 public static final String SELF_SERVICE_STATUS_RECEIVED = "Received";
\r
69 public static final String SELF_SERVICE_STATUS_ACKNOWLEDGED = "Acknowledged";
\r
70 public static final String SELF_SERVICE_STATUS_REPLIED = "Replied";
\r
71 public static final String SELF_SERVICE_STATUS_FAILED = "Failed";
\r