2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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 * ===================================================================
24 package org.onap.clamp.clds.model.properties;
26 import com.google.gson.JsonObject;
27 import org.onap.clamp.clds.util.JsonUtils;
30 * Parse Holmes bpmn parameters json properties.
32 * [{"name":"correlationalLogic","value":"vcwx"},{"name":"configPolicyName","value":"cccc"}]
35 public class Holmes extends AbstractModelElement {
37 private static final String TYPE_HOLMES = "holmes";
39 private String correlationLogic;
41 private String configPolicyName;
44 * Default constructor for Holmes Element.
47 * The ModelProperties containing the all the info, like bpmn,
48 * bpmn params, etc ...
49 * @param modelBpmn The model bpmn
50 * @param modelJson The model json
52 public Holmes(ModelProperties modelProp, ModelBpmn modelBpmn, JsonObject modelJson) {
53 super(TYPE_HOLMES, modelProp, modelBpmn, modelJson);
55 correlationLogic = JsonUtils.getStringValueByName(modelElementJsonNode, "correlationalLogic");
56 configPolicyName = JsonUtils.getStringValueByName(modelElementJsonNode, "configPolicyName");
59 public static final String getType() {
63 public String getCorrelationLogic() {
64 return correlationLogic;
67 public String getConfigPolicyName() {
68 return configPolicyName;