[MSO-8] Update the maven dependency
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / MSOCommonApplication.java
1 package org.openecomp.mso.bpmn.common;
2 /*-
3  * ============LICENSE_START=======================================================
4  * OPENECOMP - MSO
5  * ================================================================================
6  * Copyright (C) 2017 AT&T Intellectual Property. All rights 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 import java.util.List;
25
26 import org.camunda.bpm.application.PostDeploy;
27 import org.camunda.bpm.application.PreUndeploy;
28 import org.camunda.bpm.application.ProcessApplication;
29 import org.camunda.bpm.application.ProcessApplicationInfo;
30 import org.camunda.bpm.application.impl.ServletProcessApplication;
31 import org.camunda.bpm.engine.ProcessEngine;
32
33 import org.openecomp.mso.logger.MsoLogger;
34
35 /**
36  * @since Version 1.0
37  *
38  */
39 @ProcessApplication("MSO Common Application")
40 public class MSOCommonApplication extends ServletProcessApplication {
41         
42         private MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);
43         
44         @PostDeploy
45         public void postDeploy(ProcessEngine processEngineInstance) {
46                 long startTime = System.currentTimeMillis();
47                 
48                 msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Post deployment complete...");               
49         }
50         
51         @PreUndeploy
52         public void cleanup(ProcessEngine processEngine, ProcessApplicationInfo processApplicationInfo, List<ProcessEngine> processEngines) {
53                 long startTime = System.currentTimeMillis();
54                 
55                 msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Pre Undeploy complete...");  
56                 
57         }
58         
59 }