paramResolvers = new ParamResolver[args.length];
for(int i = 0; i < args.length; i++) {
BodyParam bodyParam = findAnnotation(BodyParam.class, paramAnnotations[i]);
PropertyParam propertyParam = findAnnotation(PropertyParam.class, paramAnnotations[i]);
AttachmentParam attachmentParam = findAnnotation(AttachmentParam.class, paramAnnotations[i]);
int annotationCount = 0;
if(bodyParam != null) {
annotationCount++;
}