Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / hub / model / EventType.java
1 /**
2  * Copyright (c) 2018 Orange
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14
15 package org.onap.nbi.apis.hub.model;
16
17 import com.fasterxml.jackson.annotation.JsonCreator;
18 import com.fasterxml.jackson.annotation.JsonValue;
19
20 public enum EventType {
21
22     SERVICE_ORDER_CREATION("ServiceOrderCreationNotification"),
23
24     SERVICE_ORDER_STATE_CHANGE("ServiceOrderStateChangeNotification"),
25
26     SERVICE_ORDER_ITEM_STATE_CHANGE("ServiceOrderItemStateChangeNotification"),
27
28     SERVICE_CREATION("ServiceCreationNotification"),
29
30     SERVICE_ATTRIBUTE_VALUE_CHANGE("ServiceAttributeValueChangeNotification"),
31
32     SERVICE_REMOVE("ServiceRemoveNotification"),
33
34     SDC_DISTRIBUTION("SdcDistributionNotification");
35
36     private String value;
37
38     EventType(String value) {
39         this.value = value;
40     }
41
42     @Override
43     public String toString() {
44         return String.valueOf(value);
45     }
46
47     @JsonCreator
48     public static EventType fromValue(String text) {
49         for (EventType b : EventType.values()) {
50             if (String.valueOf(b.value).equals(text)) {
51                 return b;
52             }
53         }
54         return null;
55     }
56
57     @JsonValue
58     public String value() {
59         return this.value;
60     }
61
62 }