s = a.annotationType().getAnnotation(JmsSession.class);
}
}
}
if (s != null) {
return c.createSession(s.transacted(), s.acknowledgementMode());
}
}
// Default case where we cannot find an annotation
return c.createSession(false, Session.AUTO_ACKNOWLEDGE);