Method method = processMethodContext.getMethod();
// can only annotate no-arg actions.
if(method.getParameterTypes().length != 0) {
return;
}
final Bulk annotation = Annotations.getAnnotation(method, Bulk.class);
FacetUtil.addFacet(create(annotation, processMethodContext.getFacetHolder()));
}