final Put put = this.createPut(record.getResultAccessor(), record);
this.getActionList(tableMapping.getTableName()).add(new InsertAction(put));
}
else {
final AnnotationResultAccessor accessor = this.getHConnectionImpl().getAnnotationMapping(newrec);
final Put put = this.createPut(accessor, newrec);
this.getActionList(accessor.getMapping().getTableName()).add(new InsertAction(put));
}
}