Integrate sdc notification
[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   SDC_DISTRIBUTION("SdcDistributionNotification");
34
35   private String value;
36
37   EventType(String value) {
38     this.value = value;
39   }
40
41   @Override
42   public String toString() {
43     return String.valueOf(value);
44   }
45
46   @JsonCreator
47   public static EventType fromValue(String text) {
48     for (EventType b : EventType.values()) {
49       if (String.valueOf(b.value).equals(text)) {
50         return b;
51       }
52     }
53     return null;
54   }
55
56   @JsonValue
57   public String value() {
58     return this.value;
59   }
60
61 }