Merge "New GroupLevel DeleteE2EServiceInstance flow"
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / Action.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.apihandlerinfra;
22
23
24 public enum Action implements Actions {
25     createInstance,
26     updateInstance,
27     deleteInstance,
28     configureInstance,
29     replaceInstance,
30     replaceInstanceRetainAssignments,
31     activateInstance,
32     deactivateInstance,
33     enablePort,
34     disablePort,
35     addRelationships,
36     removeRelationships,
37     inPlaceSoftwareUpdate,
38     applyUpdatedConfig,
39     completeTask,
40     assignInstance,
41     unassignInstance,
42     compareModel,
43     scaleInstance,
44     deactivateAndCloudDelete,
45     scaleOut,
46     recreateInstance,
47     addMembers,
48     removeMembers
49 }