if (clz.isAnnotationPresent(RequestProcessor.class)) {
LOGGER.log(Level.FINER, "Found a request processor[className={0}]", className);
final Method[] declaredMethods = clz.getDeclaredMethods();
for (int i = 0; i < declaredMethods.length; i++) {
final Method mthd = declaredMethods[i];
final RequestProcessing annotation = mthd.getAnnotation(RequestProcessing.class);
if (null == annotation) {
continue;
}