}
}
}
protected static void handleNoOpServiceTasksAnnotation(ActivitiMockSupport mockSupport,Method method) {
NoOpServiceTasks noOpServiceTasks = method.getAnnotation(NoOpServiceTasks.class);
if (noOpServiceTasks != null) {
String[] ids = noOpServiceTasks.ids();
Class<?>[] classes = noOpServiceTasks.classes();
String[] classNames = noOpServiceTasks.classNames();
if ( (ids == null || ids.length == 0)
&& (classes == null || classes.length == 0)
&& (classNames == null || classNames.length == 0)) {
mockSupport.setAllServiceTasksNoOp();