} else if (INSERT_FILTER.matches(method)) {
operationType = RulesOperationType.INSERT;
Insert insertAnnotation = method.getAnnotation(Insert.class);
globalMappingAnnotations = insertAnnotation.globals();
inputMappingAnnotations = insertAnnotation.inputs();
outputMappingAnnotations = insertAnnotation.outputs();
faultMappingAnnotations = insertAnnotation.faults();
} else if (FIRE_ALL_RULES_FILTER.matches(method)) {
operationType = RulesOperationType.FIRE_ALL_RULES;
FireAllRules fireAllRulesAnnotation = method.getAnnotation(FireAllRules.class);
globalMappingAnnotations = fireAllRulesAnnotation.globals();