Remove ECOMP in headers
[clamp.git] / src / main / java / org / onap / clamp / clds / model / properties / Policy.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.fasterxml.jackson.databind.JsonNode;
29
30 import java.util.ArrayList;
31 import java.util.Iterator;
32 import java.util.List;
33
34 /**
35  * Parse Policy json properties.
36  * <p>
37  * Example json:
38  * "Policy_005sny1":[[{"name":"timeout","value":"5"}],{"policyConfigurations":[[
39  * {"name":"recipe","value":["restart"]},{"name":"maxRetries","value":["3"]},{
40  * "name":"retryTimeLimit","value":["180"]},{"name":"_id","value":["vf3RtPi"]},{
41  * "name":"location","value":["san_diego"]},{"name":"resource","value":["vCTS"]}
42  * ,{"name":"onMaxRetriesLimit","value":[""]},{"name":"onTimeLimit","value":[""]
43  * },{"name":"onOtherFailure","value":[""]},{"name":"policy_parent","value":[""]
44  * }],[{"name":"recipe","value":["rebuild"]},{"name":"maxRetries","value":["3"]}
45  * ,{"name":"retryTimeLimit","value":["180"]},{"name":"_id","value":["89z8Ncl"]}
46  * ,{"name":"location","value":["san_diego"]},{"name":"resource","value":["vCTS"
47  * ]},{"name":"onMaxRetriesLimit","value":[""]},{"name":"onTimeLimit","value":[
48  * ""]},{"name":"onOtherFailure","value":[""]},{"name":"policy_parent","value":[
49  * "vf3RtPi"]}]]}]
50  */
51 public class Policy extends AbstractModelElement {
52     protected static final EELFLogger logger      = EELFManager.getInstance().getLogger(Policy.class);
53     protected static final EELFLogger auditLogger = EELFManager.getInstance().getAuditLogger();
54
55     private List<PolicyChain>         policyChains;
56
57     private static final String       TYPE_POLICY = "policy";
58
59     /**
60      * Parse Policy given json node.
61      *
62      * @param modelProp
63      * @param modelBpmn
64      * @param modelJson
65      */
66     public Policy(ModelProperties modelProp, ModelBpmn modelBpmn, JsonNode modelJson) {
67         super(TYPE_POLICY, modelProp, modelBpmn, modelJson);
68
69         // process policies
70         if (modelElementJsonNode != null) {
71             Iterator<JsonNode> itr = modelElementJsonNode.elements();
72             policyChains = new ArrayList<>();
73             while (itr.hasNext()) {
74                 policyChains.add(new PolicyChain(itr.next()));
75             }
76         }
77     }
78
79     /**
80      * @return the policyChains
81      */
82     public List<PolicyChain> getPolicyChains() {
83         return policyChains;
84     }
85
86     public static final String getType() {
87         return TYPE_POLICY;
88     }
89
90 }