aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionConstants.java
blob: 06afe9a20cec7e2be8a7e2f2d7ae579c0f44db0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Modifications Copyright (c) 2019 Samsung
 * ================================================================================
 * Modifications Copyright (c) 2020 Nokia
 * ================================================================================
 * Modifications Copyright (c) 2020 Tech Mahindra
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.so.bpmn.infrastructure.workflow.tasks;

public final class WorkflowActionConstants {

    private WorkflowActionConstants() {
        throw new IllegalStateException("Utility class");
    }

    public static final String ACTIVATE_INSTANCE = "activateInstance";
    public static final String ASSIGN_INSTANCE = "assignInstance";
    public static final String CHILD_SERVICE = "ChildService";
    public static final String CONFIGURATION = "Configuration";
    public static final String NSSI = "Nssi";
    public static final String CONTROLLER = "Controller";
    public static final String CREATE_INSTANCE = "createInstance";
    public static final String DEACTIVATE_INSTANCE = "deactivateInstance";
    public static final String DELETE_INSTANCE = "deleteInstance";
    public static final String UPGRADE_INSTANCE = "upgradeInstance";
    public static final String FABRIC_CONFIGURATION = "FabricConfiguration";
    public static final String NETWORKCOLLECTION = "NetworkCollection";
    public static final String RECREATE_INSTANCE = "recreateInstance";
    public static final String REPLACEINSTANCE = "replaceInstance";
    public static final String REPLACEINSTANCERETAINASSIGNMENTS = "replaceInstanceRetainAssignments";
    public static final String SERVICE = "Service";
    public static final String UNASSIGN_INSTANCE = "unassignInstance";
    public static final String UPDATE_INSTANCE = "updateInstance";
    public static final String USER_PARAM_SERVICE = "service";
    public static final String VOLUMEGROUP = "VolumeGroup";
    public static final String HEALTH_CHECK = "healthCheck";
    public static final String WORKFLOW_ACTION_ERROR_MESSAGE = "WorkflowActionErrorMessage";
    public static final String UPGRADE_CNF = "upgradeCnf";

}