if (UNDEFINED.equals(processId)) {
processId = bpmName;
}
componentImplementationModel.setProcessId(processId);
OperationsModel operationsModel = new V1OperationsModel(bpmNamespace.uri());
JavaService javaService = JavaService.fromClass(bpmInterface);
for (Method method : bpmClass.getDeclaredMethods()) {
BPMOperationType operationType = null;
String eventId = null;
Global[] globalMappingAnnotations = null;
Input[] inputMappingAnnotations = null;
Output[] outputMappingAnnotations = null;
Fault[] faultMappingAnnotations = null;
if (START_PROCESS_FILTER.matches(method)) {
operationType = BPMOperationType.START_PROCESS;
StartProcess startProcessAnnotation = method.getAnnotation(StartProcess.class);
globalMappingAnnotations = startProcessAnnotation.globals();
inputMappingAnnotations = startProcessAnnotation.inputs();
outputMappingAnnotations = startProcessAnnotation.outputs();
faultMappingAnnotations = startProcessAnnotation.faults();
} else if (SIGNAL_EVENT_FILTER.matches(method)) {
operationType = BPMOperationType.SIGNAL_EVENT;
SignalEvent signalEventAnnotation = method.getAnnotation(SignalEvent.class);
eventId = Strings.trimToNull(signalEventAnnotation.eventId());
globalMappingAnnotations = signalEventAnnotation.globals();
inputMappingAnnotations = signalEventAnnotation.inputs();
outputMappingAnnotations = signalEventAnnotation.outputs();
faultMappingAnnotations = signalEventAnnotation.faults();
} else if (SIGNAL_EVENT_ALL_FILTER.matches(method)) {
operationType = BPMOperationType.SIGNAL_EVENT_ALL;
SignalEventAll signalEventAllAnnotation = method.getAnnotation(SignalEventAll.class);
eventId = Strings.trimToNull(signalEventAllAnnotation.eventId());
globalMappingAnnotations = signalEventAllAnnotation.globals();
inputMappingAnnotations = signalEventAllAnnotation.inputs();
outputMappingAnnotations = signalEventAllAnnotation.outputs();
faultMappingAnnotations = signalEventAllAnnotation.faults();
} else if (ABORT_PROCESS_INSTANCE_FILTER.matches(method)) {
operationType = BPMOperationType.ABORT_PROCESS_INSTANCE;
AbortProcessInstance abortProcessInstanceAnnotation = method.getAnnotation(AbortProcessInstance.class);
globalMappingAnnotations = new Global[]{};
inputMappingAnnotations = new Input[]{};
outputMappingAnnotations = abortProcessInstanceAnnotation.outputs();
faultMappingAnnotations = abortProcessInstanceAnnotation.faults();
}
if (operationType != null) {
ServiceOperation serviceOperation = javaService.getOperation(method.getName());
if (serviceOperation != null) {
OperationModel operationModel = new V1BPMOperationModel(bpmNamespace.uri());
operationModel.setEventId(eventId);
operationModel.setName(serviceOperation.getName());
operationModel.setType(operationType);