Fix check style issues
[clamp.git] / src / main / java / org / onap / clamp / clds / model / properties / Tca.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.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;
31 import java.util.Set;
32
33 /**
34  * Parse ONAP Tca json properties.
35  *
36  */
37 public class Tca extends AbstractModelElement {
38
39     protected static final EELFLogger logger      = EELFManager.getInstance().getLogger(Tca.class);
40     protected static final EELFLogger auditLogger = EELFManager.getInstance().getAuditLogger();
41
42     private TcaItem                   tcaItem;
43
44     private static final String       TYPE_TCA    = "tca";
45
46     /**
47      * Parse Tca given json node.
48      *
49      * @param modelProp The model properties
50      * @param modelBpmn The model bpmn
51      * @param modelJson The model json
52      */
53     public Tca(ModelProperties modelProp, ModelBpmn modelBpmn, JsonObject modelJson) {
54         super(TYPE_TCA, modelProp, modelBpmn, modelJson);
55
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());
61         }
62     }
63
64     public TcaItem getTcaItem() {
65         return tcaItem;
66     }
67
68     public static final String getType() {
69         return TYPE_TCA;
70     }
71
72 }