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