this.collectionType = null;
ExtDirectMethod extDirectMethodAnnotation = AnnotationUtils.findAnnotation(method, ExtDirectMethod.class);
if (extDirectMethodAnnotation != null) {
this.type = extDirectMethodAnnotation.value();
this.synchronizeOnSession = extDirectMethodAnnotation.synchronizeOnSession();
this.collectionType = (extDirectMethodAnnotation.entryClass() == Object.class) ? null
: extDirectMethodAnnotation.entryClass();
}
this.parameters = buildParameterList(clazz, method);