b0607e9145577a821064555a66da1260af53bbd2
[clamp.git] / src / main / java / org / onap / clamp / clds / model / properties / Holmes.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
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  */
23
24 package org.onap.clamp.clds.model.properties;
25
26 import com.google.gson.JsonObject;
27 import org.onap.clamp.clds.util.JsonUtils;
28
29 /**
30  * Parse Holmes bpmn parameters json properties.
31  * <p>
32  * Example json:
33  * [{"name":"correlationalLogic","value":"vcwx"},{"name":"configPolicyName","value":"cccc"}]
34  *
35  */
36 public class Holmes extends AbstractModelElement {
37
38     private static final String TYPE_HOLMES = "holmes";
39
40     private String              correlationLogic;
41
42     private String              configPolicyName;
43
44     /**
45      * Default constructor for Holmes Element
46      *
47      * @param modelProp
48      *            The ModelProperties containing the all the info, like bpmn,
49      *            bpmn params, etc ...
50      * @param modelBpmn
51      * @param modelJson
52      */
53     public Holmes(ModelProperties modelProp, ModelBpmn modelBpmn, JsonObject modelJson) {
54         super(TYPE_HOLMES, modelProp, modelBpmn, modelJson);
55
56         correlationLogic = JsonUtils.getStringValueByName(modelElementJsonNode, "correlationalLogic");
57         configPolicyName = JsonUtils.getStringValueByName(modelElementJsonNode, "configPolicyName");
58     }
59
60     public static final String getType() {
61         return TYPE_HOLMES;
62     }
63
64     public String getCorrelationLogic() {
65         return correlationLogic;
66     }
67
68     public String getConfigPolicyName() {
69         return configPolicyName;
70     }
71
72 }