Merge "Update SO SIM project"
[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  * 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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.client.cds;
24
25 public final class PayloadConstants {
26
27     private PayloadConstants() {
28
29     }
30
31     public static final String REQUEST = "request";
32     public static final String PROPERTIES = "properties";
33     public static final String SCOPE = "scope";
34     public static final String ACTION = "action";
35     public static final String MODE = "mode";
36     public static final String SEPARATOR = "-";
37     public static final String PNF_SCOPE = "pnf";
38     public static final String VNF_SCOPE = "vnf";
39     public static final String VF_MODULE_SCOPE = "vfModule";
40     public static final String SERVICE_SCOPE = "service";
41     public static final String RESOLUTION_KEY = "resolution-key";
42     public static final String CDS_ACTOR = "cds";
43
44     public static final String PRC_BLUEPRINT_NAME = "PRC_blueprintName";
45     public static final String PRC_BLUEPRINT_VERSION = "PRC_blueprintVersion";
46     public static final String PRC_CUSTOMIZATION_UUID = "PRC_customizationUuid";
47     public static final String PRC_TARGET_SOFTWARE_VERSION = "targetSoftwareVersion";
48
49     public final static String PNF_CORRELATION_ID = "pnfCorrelationId";
50     public final static String PNF_UUID = "pnfUuid";
51     public final static String SERVICE_INSTANCE_ID = "serviceInstanceId";
52     public final static String MODEL_UUID = "modelUuid";
53 }