Refactor the java packages
[clamp.git] / src / main / java / org / onap / clamp / clds / client / OperationalPolicyDelegate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.client;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import java.io.UnsupportedEncodingException;
30 import java.util.Map;
31
32 import org.camunda.bpm.engine.delegate.DelegateExecution;
33 import org.camunda.bpm.engine.delegate.JavaDelegate;
34 import org.onap.clamp.clds.client.req.policy.OperationalPolicyReq;
35 import org.onap.clamp.clds.client.req.policy.PolicyClient;
36 import org.onap.clamp.clds.model.prop.ModelProperties;
37 import org.onap.clamp.clds.model.prop.Policy;
38 import org.onap.clamp.clds.model.prop.PolicyChain;
39 import org.onap.clamp.clds.model.refprop.RefProp;
40 import org.onap.clamp.clds.util.LoggingUtils;
41 import org.onap.policy.api.AttributeType;
42 import org.onap.policy.api.PolicyEngineException;
43 import org.onap.policy.controlloop.policy.builder.BuilderException;
44 import org.springframework.beans.factory.annotation.Autowired;
45
46 /**
47  * Send Operational Policy info to policy api. It uses the policy code to define
48  * the model and communicate with it. See also the PolicyClient class.
49  * 
50  */
51 public class OperationalPolicyDelegate implements JavaDelegate {
52     protected static final EELFLogger logger        = EELFManager.getInstance()
53             .getLogger(OperationalPolicyDelegate.class);
54     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
55     /**
56      * Automatically injected by Spring, define in CldsConfiguration as a bean.
57      */
58     @Autowired
59     private PolicyClient              policyClient;
60     /**
61      * Automatically injected by Spring, define in CldsConfiguration as a bean.
62      */
63     @Autowired
64     private RefProp                   refProp;
65
66     /**
67      * Perform activity. Send Operational Policy info to policy api.
68      *
69      * @param execution
70      *            The DelegateExecution
71      * @throws BuilderException
72      *             In case of issues with OperationalPolicyReq
73      * @throws PolicyEngineException
74      *             In case of issues with the PolicyEngine creation
75      * @throws UnsupportedEncodingException
76      */
77     @Override
78     public void execute(DelegateExecution execution)
79             throws BuilderException, PolicyEngineException, UnsupportedEncodingException {
80         String responseMessage = null;
81         String operationalPolicyRequestUuid = null;
82         ModelProperties prop = ModelProperties.create(execution);
83         Policy policy = prop.getType(Policy.class);
84         if (policy.isFound()) {
85             for (PolicyChain policyChain : prop.getType(Policy.class).getPolicyChains()) {
86                 operationalPolicyRequestUuid = LoggingUtils.getRequestId();
87                 Map<AttributeType, Map<String, String>> attributes = OperationalPolicyReq.formatAttributes(refProp,
88                         prop, prop.getType(Policy.class).getId(), policyChain);
89                 responseMessage = policyClient.sendBrmsPolicy(attributes, prop, operationalPolicyRequestUuid);
90             }
91             if (responseMessage != null) {
92                 execution.setVariable("operationalPolicyResponseMessage", responseMessage.getBytes());
93             }
94         }
95     }
96 }