019e33632596e597d8d204b3ab95b28c6f302e29
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / cds / PayloadConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 Bell Canada
6  * ================================================================================
7  * Modifications Copyright (C) 2020 Nordix
8  * ================================================================================
9  * Modifications Copyright (c) 2020 Tech Mahindra
10  * ================================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.so.client.cds;
26
27 public final class PayloadConstants {
28
29     private PayloadConstants() {
30
31     }
32
33     public static final String REQUEST = "request";
34     public static final String PROPERTIES = "properties";
35     public static final String SCOPE = "scope";
36     public static final String ACTION = "action";
37     public static final String MODE = "mode";
38     public static final String SEPARATOR = "-";
39     public static final String PNF_SCOPE = "pnf";
40     public static final String VNF_SCOPE = "vnf";
41     public static final String VF_MODULE_SCOPE = "vfmodule";
42     public static final String SERVICE_SCOPE = "service";
43     public static final String RESOLUTION_KEY = "resolution-key";
44     public static final String CDS_ACTOR = "cds";
45
46     public static final String PRC_BLUEPRINT_NAME = "PRC_blueprintName";
47     public static final String PRC_BLUEPRINT_VERSION = "PRC_blueprintVersion";
48     public static final String PRC_CUSTOMIZATION_UUID = "PRC_customizationUuid";
49     public static final String PRC_TARGET_SOFTWARE_VERSION = "targetSoftwareVersion";
50
51     public final static String PNF_CORRELATION_ID = "pnfCorrelationId";
52     public final static String PNF_UUID = "pnfUuid";
53     public final static String SERVICE_INSTANCE_ID = "serviceInstanceId";
54     public final static String MODEL_UUID = "modelUuid";
55
56     public final static String TIMEOUT_CONTROLLER_MESSAGE = "timeoutControllerMessage";
57     public final static String CONTROLLER_ERROR_MESSAGE = "controllerErrorMessage";
58     public final static String CONTROLLER_MSG_TIMEOUT_REACHED = "controllerMessageTimeoutReached";
59 }