Merge "Reorder modifiers"
[so.git] / bpmn / MSOCommonBPMN / src / main / groovy / org / openecomp / mso / bpmn / common / scripts / GenericNotificationService.groovy
1 package org.openecomp.mso.bpmn.common.scripts
2
3 import org.camunda.bpm.engine.delegate.BpmnError
4 import org.camunda.bpm.engine.delegate.DelegateExecution
5 import org.openecomp.mso.bpmn.common.scripts.AbstractServiceTaskProcessor
6 import org.openecomp.mso.bpmn.common.scripts.ExceptionUtil
7 import org.openecomp.mso.bpmn.core.WorkflowException
8 import org.openecomp.mso.bpmn.core.json.JsonUtils
9 import java.text.SimpleDateFormat
10
11 public class GenericNotificationService  extends AbstractServiceTaskProcessor { 
12         
13         
14
15         ExceptionUtil exceptionUtil = new ExceptionUtil()
16         
17         public void preProcessRequest (DelegateExecution execution) {
18                 
19         }
20
21 }