51df8749d1a0ae412ea327b8bdbc889d949a5a37
[policy/models.git] / models-interactions / model-impl / events / src / main / java / org / onap / policy / controlloop / ControlLoopNotificationType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop;
23
24 public enum ControlLoopNotificationType {
25     ACTIVE("ACTIVE"), REJECTED("REJECTED"), OPERATION("OPERATION"), OPERATION_SUCCESS(
26             "OPERATION: SUCCESS"), OPERATION_FAILURE("OPERATION: FAILURE"), FINAL_FAILURE(
27                     "FINAL: FAILURE"), FINAL_SUCCESS("FINAL: SUCCESS"), FINAL_OPENLOOP("FINAL: OPENLOOP");
28
29     private String type;
30
31     private ControlLoopNotificationType(String type) {
32         this.type = type;
33     }
34
35     @Override
36     public String toString() {
37         return this.type;
38     }
39
40     /**
41      * Convert a String type to a ControlLoopNotificationType.
42      * 
43      * @param type the String type
44      * @return the ControlLoopNotificationType
45      */
46     public static ControlLoopNotificationType toType(String type) {
47         if (ACTIVE.toString().equals(type)) {
48             return ACTIVE;
49         }
50         if (REJECTED.toString().equals(type)) {
51             return REJECTED;
52         }
53         if (OPERATION.toString().equals(type)) {
54             return OPERATION;
55         }
56         if (OPERATION_SUCCESS.toString().equals(type)) {
57             return OPERATION_SUCCESS;
58         }
59         if (OPERATION_FAILURE.toString().equals(type)) {
60             return OPERATION_FAILURE;
61         }
62         if (FINAL_FAILURE.toString().equals(type)) {
63             return FINAL_FAILURE;
64         }
65         if (FINAL_SUCCESS.toString().equals(type)) {
66             return FINAL_SUCCESS;
67         }
68         if (FINAL_OPENLOOP.toString().equals(type)) {
69             return FINAL_OPENLOOP;
70         }
71         return null;
72     }
73
74 }