public void disEngageModulefromOperationChian(AxisModule module, AxisOperation operation) {
//INFLOW
Flow flow = module.getInFlow();
if (flow != null) {
for (int j = 0; j < flow.getHandlerCount(); j++) {
HandlerDescription handler = flow.getHandler(j);
removeHandlerfromaPhase(handler, operation.getRemainingPhasesInFlow());
}
}
//OUTFLOW
flow = module.getOutFlow();
if (flow != null) {
for (int j = 0; j < flow.getHandlerCount(); j++) {
HandlerDescription handler = flow.getHandler(j);
removeHandlerfromaPhase(handler, operation.getPhasesOutFlow());
}
}
//INFAULTFLOW
flow = module.getFaultInFlow();
if (flow != null) {
for (int j = 0; j < flow.getHandlerCount(); j++) {
HandlerDescription handler = flow.getHandler(j);
removeHandlerfromaPhase(handler, operation.getPhasesInFaultFlow());
}
}
//OUTFAULTFLOW
flow = module.getFaultOutFlow();
if (flow != null) {
for (int j = 0; j < flow.getHandlerCount(); j++) {
HandlerDescription handler = flow.getHandler(j);
removeHandlerfromaPhase(handler, operation.getPhasesOutFaultFlow());
}
}
}