Add DMaaP Integration to retrieve AAI-EVENT
[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 package org.onap.nbi.apis.hub.model;
15
16 import com.fasterxml.jackson.annotation.JsonCreator;
17 import com.fasterxml.jackson.annotation.JsonValue;
18
19 public enum EventType {
20
21   SERVICE_ORDER_CREATION("ServiceOrderCreationNotification"),
22
23   SERVICE_ORDER_STATE_CHANGE("ServiceOrderStateChangeNotification"),
24
25   SERVICE_ORDER_ITEM_STATE_CHANGE("ServiceOrderItemStateChangeNotification"),
26
27   SERVICE_CREATION("ServiceCreationNotification"),
28
29   SERVICE_ATTRIBUTE_VALUE_CHANGE("ServiceAttributeValueChangeNotification"),
30
31   SERVICE_REMOVE("ServiceRemoveNotification");
32
33   private String value;
34
35   EventType(String value) {
36     this.value = value;
37   }
38
39   @Override
40   public String toString() {
41     return String.valueOf(value);
42   }
43
44   @JsonCreator
45   public static EventType fromValue(String text) {
46     for (EventType b : EventType.values()) {
47       if (String.valueOf(b.value).equals(text)) {
48         return b;
49       }
50     }
51     return null;
52   }
53
54   @JsonValue
55   public String value() {
56     return this.value;
57   }
58
59 }