Merge "add instance group support to SO"
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / groovy / org / onap / so / bpmn / infrastructure / scripts / HealchCheckActivate.groovy
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure.scripts;
24
25 import org.camunda.bpm.engine.delegate.BpmnError
26 import org.camunda.bpm.engine.delegate.DelegateExecution
27 import org.onap.so.bpmn.common.scripts.AbstractServiceTaskProcessor;
28 import org.apache.commons.lang3.*
29
30
31
32 public class HealthCheckActivate extends AbstractServiceTaskProcessor {
33
34                 /**
35          * Validates the request message and sets up the workflow.
36          * @param execution the execution
37          */
38         public void preProcessRequest(DelegateExecution execution) {
39
40         }
41         
42         
43         /**
44          * Sends the synchronous response back to the API Handler.
45          * @param execution the execution
46          */
47         public void sendResponse(DelegateExecution execution) {
48                 def status = execution.getVariable("healthyStatus")
49                 def healthcheckmessage = execution.getVariable("healthcheckmessage")
50                         if (status == "true") {
51                                 sendWorkflowResponse(execution, 200, healthcheckmessage)
52                         }else{
53                                 sendWorkflowResponse(execution, 503, healthcheckmessage)
54                         }
55         }
56
57 }