7ffd066de5be7d3a8f3e0977bdc157ebe46c08db
[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     public static final String ACTIVATE_INSTANCE = "activateInstance";
36     public static final String ASSIGN_INSTANCE = "assignInstance";
37     public static final String CHILD_SERVICE = "ChildService";
38     public static final String CONFIGURATION = "Configuration";
39     public static final String CONTROLLER = "Controller";
40     public static final String CREATE_INSTANCE = "createInstance";
41     public static final String DEACTIVATE_INSTANCE = "deactivateInstance";
42     public static final String DELETE_INSTANCE = "deleteInstance";
43     public static final String UPGRADE_INSTANCE = "upgradeInstance";
44     public static final String FABRIC_CONFIGURATION = "FabricConfiguration";
45     public static final String NETWORKCOLLECTION = "NetworkCollection";
46     public static final String RECREATE_INSTANCE = "recreateInstance";
47     public static final String REPLACEINSTANCE = "replaceInstance";
48     public static final String REPLACEINSTANCERETAINASSIGNMENTS = "replaceInstanceRetainAssignments";
49     public static final String SERVICE = "Service";
50     public static final String UNASSIGN_INSTANCE = "unassignInstance";
51     public static final String UPDATE_INSTANCE = "updateInstance";
52     public static final String USER_PARAM_SERVICE = "service";
53     public static final String VOLUMEGROUP = "VolumeGroup";
54     public static final String HEALTH_CHECK = "healthCheck";
55     public static final String WORKFLOW_ACTION_ERROR_MESSAGE = "WorkflowActionErrorMessage";
56     public static final String UPGRADE_CNF = "upgradeCnf";
57
58 }