979899100101102103104105106107
* @param sf session factory to register */ public void setSessionFactory(SessionFactory sf) { this.sf = sf; if (sf == null) { stats = new ConcurrentStatisticsImpl(); } else { stats = sf.getStatistics(); }
9899100101102103104105106107108
9293949596979899100101102