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.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import com.google.gson.JsonElement;
29 import com.google.gson.JsonObject;
30 import java.util.Map.Entry;
34 * Parse ONAP Tca json properties.
37 public class Tca extends AbstractModelElement {
39 protected static final EELFLogger logger = EELFManager.getInstance().getLogger(Tca.class);
40 protected static final EELFLogger auditLogger = EELFManager.getInstance().getAuditLogger();
42 private TcaItem tcaItem;
44 private static final String TYPE_TCA = "tca";
47 * Parse Tca given json node.
49 * @param modelProp The model properties
50 * @param modelBpmn The model bpmn
51 * @param modelJson The model json
53 public Tca(ModelProperties modelProp, ModelBpmn modelBpmn, JsonObject modelJson) {
54 super(TYPE_TCA, modelProp, modelBpmn, modelJson);
56 // process Server_Configurations
57 if (modelElementJsonNode != null) {
58 //this is wrong assumption that there is only one property object
59 Set<Entry<String, JsonElement>> entries = modelElementJsonNode.getAsJsonObject().entrySet();
60 tcaItem = new TcaItem(entries.iterator().next().getValue());
64 public TcaItem getTcaItem() {
68 public static final String getType() {