1 5 package xdoclet.modules.hibernate; 6 7 import java.util.Collection ; 8 9 21 public interface HibernateProperties 22 { 23 String getTransactionManagerStrategy(); 24 25 String getUserTransactionName(); 26 27 String getUserName(); 28 29 String getPassword(); 30 31 boolean getUseOuterJoin(); 32 33 boolean getShowSql(); 34 35 String getJndiName(); 36 37 Collection getJndiProperties(); 38 39 Collection getOtherProperties(); 40 41 Collection getOtherMappings(); 42 43 String getDataSource(); 44 45 String getDialect(); 46 47 String getDriver(); 48 49 String getJdbcUrl(); 50 51 String getPoolSize(); 52 } 53 | Popular Tags |