if(cf == null)
cf = meta.getMetaClass().getSimpleName();
//throw new RuntimeException("bug, someone added an annotation but didn't add to this else clause(add else if to this guy)");
}
NoSqlVirtualCf anno = meta.getMetaClass().getAnnotation(NoSqlVirtualCf.class);
if(anno != null) {
//okay, here we swap, the entity name is the virtual CF name now...
virtualCf = cf;
//The REAL CF is the one defined in NoSqlVirtualCf
cf = anno.storedInCf();
}
meta.setup(virtualCf, cf, false, false);
}