3e8fd6ee056ee74932bd93d1d43c7babc4298fc2
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / MSOCommonApplication.java
1 package org.openecomp.mso.bpmn.common;\r
2 /*-\r
3  * ============LICENSE_START=======================================================\r
4  * ONAP - SO\r
5  * ================================================================================\r
6  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
7  * ================================================================================\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  * \r
12  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  * \r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * ============LICENSE_END=========================================================\r
20  */\r
21 \r
22 \r
23 \r
24 import java.util.List;\r
25 \r
26 import org.camunda.bpm.application.PostDeploy;\r
27 import org.camunda.bpm.application.PreUndeploy;\r
28 import org.camunda.bpm.application.ProcessApplication;\r
29 import org.camunda.bpm.application.ProcessApplicationInfo;\r
30 import org.camunda.bpm.application.impl.ServletProcessApplication;\r
31 import org.camunda.bpm.engine.ProcessEngine;\r
32 \r
33 import org.openecomp.mso.logger.MsoLogger;\r
34 \r
35 /**\r
36  * @since Version 1.0\r
37  *\r
38  */\r
39 @ProcessApplication(name="MSO Common Application", deploymentDescriptors={"../processes.xml"})\r
40 public class MSOCommonApplication extends ServletProcessApplication {\r
41         \r
42         private MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);\r
43         \r
44         @PostDeploy\r
45         public void postDeploy(ProcessEngine processEngineInstance) {\r
46                 long startTime = System.currentTimeMillis();\r
47                 \r
48                 msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Post deployment complete...");               \r
49         }\r
50         \r
51         @PreUndeploy\r
52         public void cleanup(ProcessEngine processEngine, ProcessApplicationInfo processApplicationInfo, List<ProcessEngine> processEngines) {\r
53                 long startTime = System.currentTimeMillis();\r
54                 \r
55                 msoLogger.recordAuditEvent (startTime, MsoLogger.StatusCode.COMPLETE, MsoLogger.ResponseCode.Suc, "Pre Undeploy complete...");  \r
56                 \r
57         }\r
58         \r
59 }\r