Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-model / src / main / java / org / openecomp / dcae / apod / analytics / model / util / json / mixin / cef / AlertTypeMixin.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 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.openecomp.dcae.apod.analytics.model.util.json.mixin.cef;
22
23 import com.fasterxml.jackson.annotation.JsonCreator;
24 import com.fasterxml.jackson.annotation.JsonValue;
25 import org.openecomp.dcae.apod.analytics.model.domain.cef.AlertType;
26 import org.openecomp.dcae.apod.analytics.model.util.json.mixin.JsonMixin;
27
28 /**
29  * Mixin for Alert Type
30  *
31  * @author Rajiv Singla . Creation Date: 11/3/2016.
32  */
33 public abstract class AlertTypeMixin implements JsonMixin {
34
35     private String name;
36
37     /**
38      * Provides hint to Jackson Json to parse alert type string which are not valid java variable names
39      * to proper java alert types
40      *
41      * @param name name of Alert coming from incoming Json
42      *
43      * @return java representation of alert type
44      */
45     @JsonCreator
46     public static AlertType forValue(String name) {
47
48         switch (name) {
49             case "CARD-ANOMALY":
50                 return AlertType.CARD_ANOMALY;
51             case "ELEMENT-ANOMALY":
52                 return AlertType.ELEMENT_ANOMALY;
53             case "INTERFACE-ANOMALY":
54                 return AlertType.INTERFACE_ANOMALY;
55             case "SERVICE-ANOMALY":
56                 return AlertType.SERVICE_ANOMALY;
57             default:
58                 return AlertType.UNKNOWN;
59         }
60
61     }
62
63     /**
64      * Provide hint to Jackson Json to parse java object variable name to CEF specification alert String
65      *
66      * @return alert string in CEF format
67      */
68     @JsonValue
69     public String getName() {
70         return name;
71     }
72
73
74 }