Merge "Fixed issue in AN NSSMF activation flow for SDNR interactions"
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / workflow / tasks / WorkflowActionConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Modifications Copyright (c) 2020 Nokia
10  * ================================================================================
11  * Modifications Copyright (c) 2020 Tech Mahindra
12  * ================================================================================
13  * Licensed under the Apache License, Version 2.0 (the "License");
14  * you may not use this file except in compliance with the License.
15  * You may obtain a copy of the License at
16  *
17  *      http://www.apache.org/licenses/LICENSE-2.0
18  *
19  * Unless required by applicable law or agreed to in writing, software
20  * distributed under the License is distributed on an "AS IS" BASIS,
21  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22  * See the License for the specific language governing permissions and
23  * limitations under the License.
24  * ============LICENSE_END=========================================================
25  */
26
27 package org.onap.so.bpmn.infrastructure.workflow.tasks;
28
29 public final class WorkflowActionConstants {
30
31     private WorkflowActionConstants() {
32         throw new IllegalStateException("Utility class");
33     }
34
35     static final String USER_PARAM_SERVICE = "service";
36     static final String CREATE_INSTANCE = "createInstance";
37     static final String FABRIC_CONFIGURATION = "FabricConfiguration";
38     static final String WORKFLOW_ACTION_ERROR_MESSAGE = "WorkflowActionErrorMessage";
39     static final String SERVICE = "Service";
40     static final String CONTROLLER = "Controller";
41     static final String NETWORKCOLLECTION = "NetworkCollection";
42     static final String CONFIGURATION = "Configuration";
43     static final String ASSIGNINSTANCE = "assignInstance";
44     static final String REPLACEINSTANCE = "replaceInstance";
45     static final String VOLUMEGROUP = "VolumeGroup";
46     static final String REPLACEINSTANCERETAINASSIGNMENTS = "replaceInstanceRetainAssignments";
47 }