I have the following class to generate the Schema and a few default entities with Hibernate 2.1.2. Exporting the schema to Postgre 7.4.1 (running on FreeBSD 5.2.1) works perfectly, but creating the entities somehow fails. While the log shows the SQL is being generated and save returns an id, fetching the Entity by id in another class fails (can't find the given id) and looking into the DB, no row is ever being added. From all I can tell, the mappings are correct as the schema created is just fine.
Inserting the data is as straightforward as it possibly gets:
Code:
Session s=sf.openSession();
String adminRoleId=(String) s.save(defaultAdminRole);
String userId=(String) s.save(defaultUser);
System.out.println("adminId: " + adminRoleId + " userid: " + userId );
System.out.println("Saved, flushing...");
s.flush();
s.close();
Log of the insertion:
Code:
2004-03-10 13:56:32,484 DEBUG [net.sf.hibernate.impl.SessionFactoryObjectFactory] - <initializing class SessionFactoryObjectFactory>
2004-03-10 13:56:32,500 DEBUG [net.sf.hibernate.impl.SessionFactoryObjectFactory] - <registered: 297ec299fb34d81100fb34d875e40000 (unnamed)>
2004-03-10 13:56:32,500 INFO [net.sf.hibernate.impl.SessionFactoryObjectFactory] - <no JNDI name configured>
2004-03-10 13:56:32,500 DEBUG [net.sf.hibernate.impl.SessionFactoryImpl] - <instantiated session factory>
Creating default role and user
Saving...
2004-03-10 13:56:32,546 DEBUG [net.sf.hibernate.impl.SessionImpl] - <opened session>
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <generated identifier: 297ec299fb34d81100fb34d876320001>
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <saving [com.triligon.entities.user.SimpleRoleImpl#297ec299fb34d81100fb34d876320001]>
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <generated identifier: 297ec299fb34d81100fb34d876320002>
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <saving [com.triligon.entities.user.SimpleUserImpl#297ec299fb34d81100fb34d876320002]>
adminId: 297ec299fb34d81100fb34d876320001 userid: 297ec299fb34d81100fb34d876320002
Saved, flushing...
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <flushing session>
2004-03-10 13:56:32,562 DEBUG [net.sf.hibernate.impl.SessionImpl] - <Flushing entities and processing referenced collections>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.SessionImpl] - <Processing unreferenced collections>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.SessionImpl] - <Scheduling collection removes/(re)creates/updates>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.SessionImpl] - <Flushed: 2 insertions, 0 updates, 0 deletions to 2 objects>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.SessionImpl] - <Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.Printer] - <listing entities:>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.Printer] - <com.triligon.entities.user.SimpleUserImpl{password=defaultpassword, events=null, roleMemberships=null, categories=null, username=defaultuser, id=297ec299fb34d81100fb34d876320002, toDoEntries=null, messages=null}>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.Printer] - <com.triligon.entities.user.SimpleRoleImpl{members=null, name=Default Admin Role, id=297ec299fb34d81100fb34d876320001}>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.SessionImpl] - <executing flush>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.persister.EntityPersister] - <Inserting entity: [com.triligon.entities.user.SimpleRoleImpl#297ec299fb34d81100fb34d876320001]>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <about to open: 0 open PreparedStatements, 0 open ResultSets>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.connection.DriverManagerConnectionProvider] - <total checked-out connections: 0>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.connection.DriverManagerConnectionProvider] - <using pooled JDBC connection, pool size: 0>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.SQL] - <insert into SimpleRole (name, class, id) values (?, 'SimpleRoleImpl', ?)>
Hibernate: insert into SimpleRole (name, class, id) values (?, 'SimpleRoleImpl', ?)
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <preparing statement>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.persister.EntityPersister] - <Dehydrating entity: [com.triligon.entities.user.SimpleRoleImpl#297ec299fb34d81100fb34d876320001]>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.type.StringType] - <binding 'Default Admin Role' to parameter: 1>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.type.StringType] - <binding '297ec299fb34d81100fb34d876320001' to parameter: 2>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <Adding to batch>
2004-03-10 13:56:32,578 DEBUG [net.sf.hibernate.persister.EntityPersister] - <Inserting entity: [com.triligon.entities.user.SimpleUserImpl#297ec299fb34d81100fb34d876320002]>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <Executing batch size: 1>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <done closing: 0 open PreparedStatements, 0 open ResultSets>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <closing statement>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <about to open: 0 open PreparedStatements, 0 open ResultSets>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.SQL] - <insert into SimpleUser (username, password, class, id) values (?, ?, 'SimpleUserImpl', ?)>
Hibernate: insert into SimpleUser (username, password, class, id) values (?, ?, 'SimpleUserImpl', ?)
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <preparing statement>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.persister.EntityPersister] - <Dehydrating entity: [com.triligon.entities.user.SimpleUserImpl#297ec299fb34d81100fb34d876320002]>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.type.StringType] - <binding 'defaultuser' to parameter: 1>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.type.StringType] - <binding 'defaultpassword' to parameter: 2>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.type.StringType] - <binding '297ec299fb34d81100fb34d876320002' to parameter: 3>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <Adding to batch>
2004-03-10 13:56:32,625 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <Executing batch size: 1>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <done closing: 0 open PreparedStatements, 0 open ResultSets>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.BatcherImpl] - <closing statement>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.SessionImpl] - <post flush>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.SessionImpl] - <closing session>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.SessionImpl] - <disconnecting session>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.connection.DriverManagerConnectionProvider] - <returning connection to pool, pool size: 1>
2004-03-10 13:56:32,640 DEBUG [net.sf.hibernate.impl.SessionImpl] - <transaction completion>
2004-03-10 13:56:32,640 INFO [net.sf.hibernate.impl.SessionFactoryImpl] - <closing>
2004-03-10 13:56:32,640 INFO [net.sf.hibernate.connection.DriverManagerConnectionProvider] - <cleaning up connection pool: jdbc:postgresql://10.2.2.2/test>
Log of the fetch
[code]
g.Binder] - <Mapped property: username -> username, type: string>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaWebspace -> quotaWebspace, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaVirtualHosts -> quotaVirtualHosts, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaFTPAccounts -> quotaFTPAccounts, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaEmailNumber -> quotaEmailNumber, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaEmailSpace -> quotaEmailSpace, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: created -> created, type: timestamp>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: active -> active, type: boolean>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quotaDatabases -> quotaDatabases, type: integer>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: masterDomainName -> masterDomainName, type: string>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: homedir -> homedir, type: string>
2004-03-10 13:58:04,687 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: ftpAccounts, type: java.util.Set>
2004-03-10 13:58:04,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: emailAccounts, type: java.util.Set>
2004-03-10 13:58:04,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualHosts, type: java.util.Set>
2004-03-10 13:58:04,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: domain, type: com.triligon.entities.hosting.Domain>
2004-03-10 13:58:04,718 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customer -> customer_FK, type: com.triligon.entities.accounting.Customer>
2004-03-10 13:58:04,718 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: databaseService -> databaseService_FK, type: com.triligon.entities.hosting.server.DatabaseService>
2004-03-10 13:58:04,718 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: mailService -> mailService_FK, type: com.triligon.entities.hosting.server.MailService>
2004-03-10 13:58:04,718 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: webService -> webService_FK, type: com.triligon.entities.hosting.server.WebService>
2004-03-10 13:58:04,734 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: adminService -> adminService_FK, type: com.triligon.entities.hosting.server.AdminService>
2004-03-10 13:58:04,734 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: webmailService -> webmailService_FK, type: com.triligon.entities.hosting.server.WebmailService>
2004-03-10 13:58:04,734 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.HostingAccountImpl -> HostingAccount>
2004-03-10 13:58:04,734 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1807ca8 [Attribute: name resource value "com/triligon/entities/hosting/Domain.hbm.xml"]>
2004-03-10 13:58:04,734 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/Domain.hbm.xml>
2004-03-10 13:58:04,734 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:04,750 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:04,828 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.Domain -> Domain>
2004-03-10 13:58:04,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:04,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: domainName -> domainName, type: string>
2004-03-10 13:58:04,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccount, type: com.triligon.entities.hosting.HostingAccount>
2004-03-10 13:58:04,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: registrar -> registrar_FK, type: com.triligon.entities.hosting.Registrar>
2004-03-10 13:58:04,828 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.DomainImpl -> Domain>
2004-03-10 13:58:04,828 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@13c468a [Attribute: name resource value "com/triligon/entities/hosting/EmailAccount.hbm.xml"]>
2004-03-10 13:58:04,828 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/EmailAccount.hbm.xml>
2004-03-10 13:58:04,843 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:04,843 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:04,890 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.EmailAccount -> EmailAccount>
2004-03-10 13:58:04,890 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:04,890 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: password -> password, type: string>
2004-03-10 13:58:04,890 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: maildir -> maildir, type: string>
2004-03-10 13:58:04,890 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: storeMail -> storeMail, type: boolean>
2004-03-10 13:58:04,890 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: forwardingTargets -> forwardingTargets, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: onVacation -> onVacation, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: useSpamAssassin -> useSpamAssassin, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: useAntivirus -> useAntivirus, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: discardInfectedMail -> discardInfectedMail, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quarantineInfectedMail -> quarantineInfectedMail, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: tagInfectedMail -> tagInfectedMail, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: discardSpam -> discardSpam, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quarantineSpam -> quarantineSpam, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: tagSpam -> tagSpam, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: quota -> quota, type: integer>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: active -> active, type: boolean>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: emailAddress -> emailAddress, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: realname -> realname, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: comment -> comment, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: autoreplyFrom -> autoreplyFrom, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: autoreplySubject -> autoreplySubject, type: string>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: autoreplyText -> autoreplyText, type: integer>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccount -> hostingAccount_FK, type: com.triligon.entities.hosting.HostingAccount>
2004-03-10 13:58:04,906 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@193a66f [Attribute: name resource value "com/triligon/entities/hosting/FTPAccount.hbm.xml"]>
2004-03-10 13:58:04,921 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/FTPAccount.hbm.xml>
2004-03-10 13:58:04,921 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:04,921 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:04,953 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.FTPAccount -> FTPAccount>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: username -> username, type: string>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: uid -> uid, type: integer>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: password -> password, type: string>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: homedir -> homedir, type: string>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: gid -> gid, type: integer>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: active -> active, type: boolean>
2004-03-10 13:58:04,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: shell -> shell, type: string>
2004-03-10 13:58:05,000 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccount -> hostingAccount_FK, type: com.triligon.entities.hosting.HostingAccount>
2004-03-10 13:58:05,000 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@ce2187 [Attribute: name resource value "com/triligon/entities/hosting/Registrar.hbm.xml"]>
2004-03-10 13:58:05,000 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/Registrar.hbm.xml>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,031 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.Registrar -> Registrar>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: domains, type: java.util.Set>
2004-03-10 13:58:05,031 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.RegistrarImpl -> Registrar>
2004-03-10 13:58:05,031 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@157c2bd [Attribute: name resource value "com/triligon/entities/hosting/VirtualHost.hbm.xml"]>
2004-03-10 13:58:05,046 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/VirtualHost.hbm.xml>
2004-03-10 13:58:05,046 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,046 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,078 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.VirtualHost -> VirtualHost>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: documentRoot -> documentRoot, type: string>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: serverName -> serverName, type: string>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: errorLog -> errorLog, type: string>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: accessLog -> accessLog, type: string>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: active -> active, type: boolean>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccount -> hostingAccount_FK, type: com.triligon.entities.hosting.HostingAccount>
2004-03-10 13:58:05,078 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.VirtualHostImpl -> VirtualHost>
2004-03-10 13:58:05,078 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1a80a69 [Attribute: name resource value "com/triligon/entities/hosting/server/AdminService.hbm.xml"]>
2004-03-10 13:58:05,078 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/AdminService.hbm.xml>
2004-03-10 13:58:05,093 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,093 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,140 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.AdminService -> AdminService>
2004-03-10 13:58:05,140 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,140 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualIP -> virtualIP, type: string>
2004-03-10 13:58:05,140 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,140 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccounts, type: java.util.Set>
2004-03-10 13:58:05,140 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: physicalMachine, type: com.triligon.entities.hosting.server.PhysicalMachine>
2004-03-10 13:58:05,156 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.AdminServiceImpl -> AdminService>
2004-03-10 13:58:05,156 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1bb60c3 [Attribute: name resource value "com/triligon/entities/hosting/server/DatabaseService.hbm.xml"]>
2004-03-10 13:58:05,156 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/DatabaseService.hbm.xml>
2004-03-10 13:58:05,156 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,156 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,187 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.DatabaseService -> DatabaseService>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualIP -> virtualIP, type: string>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccounts, type: java.util.Set>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: thePhysicalMachine, type: com.triligon.entities.hosting.server.PhysicalMachine>
2004-03-10 13:58:05,187 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.DatabaseServiceImpl -> DatabaseService>
2004-03-10 13:58:05,187 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1de256f [Attribute: name resource value "com/triligon/entities/hosting/server/PhysicalMachine.hbm.xml"]>
2004-03-10 13:58:05,187 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/PhysicalMachine.hbm.xml>
2004-03-10 13:58:05,203 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,203 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,218 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.PhysicalMachine -> PhysicalMachine>
2004-03-10 13:58:05,218 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,218 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,218 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: primaryIP -> primaryIP, type: string>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: isWebserver -> isWebserver, type: boolean>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: isMailserver -> isMailserver, type: boolean>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: isWebmailserver -> isWebmailserver, type: boolean>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: isAdminserver -> isAdminserver, type: boolean>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: isDatabaseserver -> isDatabaseserver, type: boolean>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: mailService, type: com.triligon.entities.hosting.server.MailService>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: databaseService, type: com.triligon.entities.hosting.server.DatabaseService>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: adminService, type: com.triligon.entities.hosting.server.AdminService>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: webService, type: com.triligon.entities.hosting.server.WebService>
2004-03-10 13:58:05,234 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.PhysicalMachineImpl -> PhysicalMachine>
2004-03-10 13:58:05,234 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@19360e2 [Attribute: name resource value "com/triligon/entities/hosting/server/MailService.hbm.xml"]>
2004-03-10 13:58:05,234 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/MailService.hbm.xml>
2004-03-10 13:58:05,281 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,281 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,296 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.MailService -> MailService>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualIP -> virtualIP, type: string>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccounts, type: java.util.Set>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: physicalMachine, type: com.triligon.entities.hosting.server.PhysicalMachine>
2004-03-10 13:58:05,296 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.MailServiceImpl -> MailService>
2004-03-10 13:58:05,296 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@c05d3b [Attribute: name resource value "com/triligon/entities/hosting/server/WebmailService.hbm.xml"]>
2004-03-10 13:58:05,296 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/WebmailService.hbm.xml>
2004-03-10 13:58:05,312 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,312 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,328 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.WebmailService -> WebmailService>
2004-03-10 13:58:05,328 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,328 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualIP -> virtualIP, type: string>
2004-03-10 13:58:05,328 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,328 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccounts, type: java.util.Set>
2004-03-10 13:58:05,328 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.WebmailServiceImpl -> WebmailService>
2004-03-10 13:58:05,343 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@12d96f2 [Attribute: name resource value "com/triligon/entities/hosting/server/WebService.hbm.xml"]>
2004-03-10 13:58:05,343 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/hosting/server/WebService.hbm.xml>
2004-03-10 13:58:05,343 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,343 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,359 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.hosting.server.WebService -> WebService>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: virtualIP -> virtualIP, type: string>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: baseHomedir -> baseHomedir, type: string>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccounts, type: java.util.Set>
2004-03-10 13:58:05,359 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: physicalMachine, type: com.triligon.entities.hosting.server.PhysicalMachine>
2004-03-10 13:58:05,359 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.hosting.server.WebServiceImpl -> WebService>
2004-03-10 13:58:05,375 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@175d6ab [Attribute: name resource value "com/triligon/entities/products/Product.hbm.xml"]>
2004-03-10 13:58:05,375 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/products/Product.hbm.xml>
2004-03-10 13:58:05,375 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,406 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,515 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.products.Product -> Product>
2004-03-10 13:58:05,515 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,515 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,515 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: description -> description, type: string>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: priceSell -> priceSell, type: integer>
2004-03-10 13:58:05,531 INFO [net.sf.hibernate.cfg.Binder] - <Mapping collection: com.triligon.entities.products.Product.theSupplier -> TheProductId_TheSupplierId>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplier, type: java.util.Set>
2004-03-10 13:58:05,531 INFO [net.sf.hibernate.cfg.Binder] - <Mapping collection: com.triligon.entities.products.Product.theProductGroup -> TheProductGroupId_TheProductId>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theProductGroup, type: java.util.Set>
2004-03-10 13:58:05,531 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.products.ProductImpl -> Product>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@75e4fc [Attribute: name resource value "com/triligon/entities/products/ProductGroup.hbm.xml"]>
2004-03-10 13:58:05,531 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/products/ProductGroup.hbm.xml>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,531 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,546 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.products.ProductGroup -> ProductGroup>
2004-03-10 13:58:05,546 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,546 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,562 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: description -> description, type: string>
2004-03-10 13:58:05,562 INFO [net.sf.hibernate.cfg.Binder] - <Mapping collection: com.triligon.entities.products.ProductGroup.theProduct -> TheProductGroupId_TheProductId>
2004-03-10 13:58:05,562 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theProduct, type: java.util.Set>
2004-03-10 13:58:05,562 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.products.ProductGroupImpl -> ProductGroup>
2004-03-10 13:58:05,562 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1bbf1ca [Attribute: name resource value "com/triligon/entities/accounting/Account.hbm.xml"]>
2004-03-10 13:58:05,562 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/Account.hbm.xml>
2004-03-10 13:58:05,562 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,562 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,593 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.Account -> Account>
2004-03-10 13:58:05,593 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,593 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: name -> name, type: string>
2004-03-10 13:58:05,593 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: description -> description, type: string>
2004-03-10 13:58:05,593 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierBill, type: java.util.Set>
2004-03-10 13:58:05,609 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerInvoice, type: com.triligon.entities.accounting.CustomerInvoice>
2004-03-10 13:58:05,609 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplier, type: com.triligon.entities.accounting.Supplier>
2004-03-10 13:58:05,609 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customer, type: com.triligon.entities.accounting.Customer>
2004-03-10 13:58:05,609 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.AccountImpl -> Account>
2004-03-10 13:58:05,609 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@5e55ab [Attribute: name resource value "com/triligon/entities/accounting/CustomerEstimate.hbm.xml"]>
2004-03-10 13:58:05,609 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/CustomerEstimate.hbm.xml>
2004-03-10 13:58:05,656 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,656 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,671 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.CustomerEstimate -> CustomerEstimate>
2004-03-10 13:58:05,671 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,671 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customer -> customer_FK, type: com.triligon.entities.accounting.Customer>
2004-03-10 13:58:05,671 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerOrder, type: com.triligon.entities.accounting.CustomerOrder>
2004-03-10 13:58:05,671 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.CustomerEstimateImpl -> CustomerEstimate>
2004-03-10 13:58:05,671 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@3e0ebb [Attribute: name resource value "com/triligon/entities/accounting/Customer.hbm.xml"]>
2004-03-10 13:58:05,671 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/Customer.hbm.xml>
2004-03-10 13:58:05,687 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,687 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,703 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.Customer -> Customer>
2004-03-10 13:58:05,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: hostingAccount, type: java.util.Set>
2004-03-10 13:58:05,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customerInvoices, type: java.util.Set>
2004-03-10 13:58:05,703 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: account, type: com.triligon.entities.accounting.Account>
2004-03-10 13:58:05,718 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customerEstimate, type: java.util.Set>
2004-03-10 13:58:05,718 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.CustomerImpl -> Customer>
2004-03-10 13:58:05,718 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@18f1d7e [Attribute: name resource value "com/triligon/entities/accounting/CustomerInvoice.hbm.xml"]>
2004-03-10 13:58:05,718 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/CustomerInvoice.hbm.xml>
2004-03-10 13:58:05,718 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,718 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,750 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.CustomerInvoice -> CustomerInvoice>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: date -> date, type: timestamp>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: totalAmount -> totalAmount, type: integer>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: due -> due, type: timestamp>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: open -> open, type: boolean>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: invoiceNumber -> invoiceNumber, type: integer>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: customer -> customer_FK, type: com.triligon.entities.accounting.Customer>
2004-03-10 13:58:05,750 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerPayment, type: com.triligon.entities.accounting.CustomerPayment>
2004-03-10 13:58:05,796 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theAccount, type: com.triligon.entities.accounting.Account>
2004-03-10 13:58:05,796 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerOrder, type: com.triligon.entities.accounting.CustomerOrder>
2004-03-10 13:58:05,796 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.CustomerInvoiceImpl -> CustomerInvoice>
2004-03-10 13:58:05,796 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@2c1e6b [Attribute: name resource value "com/triligon/entities/accounting/CustomerOrder.hbm.xml"]>
2004-03-10 13:58:05,796 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/CustomerOrder.hbm.xml>
2004-03-10 13:58:05,812 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,812 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,828 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.CustomerOrder -> CustomerOrder>
2004-03-10 13:58:05,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerEstimate, type: com.triligon.entities.accounting.CustomerEstimate>
2004-03-10 13:58:05,828 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerInvoice, type: com.triligon.entities.accounting.CustomerInvoice>
2004-03-10 13:58:05,828 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.CustomerOrderImpl -> CustomerOrder>
2004-03-10 13:58:05,828 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@15bdc50 [Attribute: name resource value "com/triligon/entities/accounting/CustomerPayment.hbm.xml"]>
2004-03-10 13:58:05,828 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/CustomerPayment.hbm.xml>
2004-03-10 13:58:05,843 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,843 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,843 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.CustomerPayment -> CustomerPayment>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: amount -> amount, type: integer>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: date -> date, type: timestamp>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: bankTransactionId -> bankTransactionId, type: string>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theCustomerInvoice, type: com.triligon.entities.accounting.CustomerInvoice>
2004-03-10 13:58:05,859 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.CustomerPaymentImpl -> CustomerPayment>
2004-03-10 13:58:05,859 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@c791b9 [Attribute: name resource value "com/triligon/entities/accounting/SupplierBill.hbm.xml"]>
2004-03-10 13:58:05,859 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/SupplierBill.hbm.xml>
2004-03-10 13:58:05,875 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,875 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,953 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.SupplierBill -> SupplierBill>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: date -> date, type: timestamp>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: totalAmount -> totalAmount, type: integer>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: due -> due, type: timestamp>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: open -> open, type: boolean>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: billNumber -> billNumber, type: integer>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplier -> TheSupplier_FK, type: com.triligon.entities.accounting.Supplier>
2004-03-10 13:58:05,953 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierPayment, type: java.util.Set>
2004-03-10 13:58:05,968 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theAccount -> TheAccount_FK, type: com.triligon.entities.accounting.Account>
2004-03-10 13:58:05,968 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.SupplierBillImpl -> SupplierBill>
2004-03-10 13:58:05,968 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@7f4ec [Attribute: name resource value "com/triligon/entities/accounting/SupplierEstimate.hbm.xml"]>
2004-03-10 13:58:05,968 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/SupplierEstimate.hbm.xml>
2004-03-10 13:58:05,968 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:05,984 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:05,984 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.SupplierEstimate -> SupplierEstimate>
2004-03-10 13:58:05,984 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:05,984 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplier -> TheSupplier_FK, type: com.triligon.entities.accounting.Supplier>
2004-03-10 13:58:06,000 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierOrder, type: java.util.Set>
2004-03-10 13:58:06,000 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.SupplierEstimateImpl -> SupplierEstimate>
2004-03-10 13:58:06,000 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@76fba0 [Attribute: name resource value "com/triligon/entities/accounting/Supplier.hbm.xml"]>
2004-03-10 13:58:06,000 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/Supplier.hbm.xml>
2004-03-10 13:58:06,000 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:06,000 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:06,015 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.Supplier -> Supplier>
2004-03-10 13:58:06,015 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:06,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierBill, type: java.util.Set>
2004-03-10 13:58:06,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theAccount, type: com.triligon.entities.accounting.Account>
2004-03-10 13:58:06,031 INFO [net.sf.hibernate.cfg.Binder] - <Mapping collection: com.triligon.entities.accounting.Supplier.theProduct -> TheProductId_TheSupplierId>
2004-03-10 13:58:06,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theProduct, type: java.util.Set>
2004-03-10 13:58:06,031 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierEstimate, type: java.util.Set>
2004-03-10 13:58:06,062 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.SupplierImpl -> Supplier>
2004-03-10 13:58:06,062 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@1b8d6f7 [Attribute: name resource value "com/triligon/entities/accounting/SupplierOrder.hbm.xml"]>
2004-03-10 13:58:06,078 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/SupplierOrder.hbm.xml>
2004-03-10 13:58:06,093 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:06,093 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:06,093 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.SupplierOrder -> SupplierOrder>
2004-03-10 13:58:06,093 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:06,093 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: eta -> eta, type: timestamp>
2004-03-10 13:58:06,109 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierEstimate -> TheSupplierEstimate_FK, type: com.triligon.entities.accounting.SupplierEstimate>
2004-03-10 13:58:06,109 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierBill, type: com.triligon.entities.accounting.SupplierBill>
2004-03-10 13:58:06,109 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.SupplierOrderImpl -> SupplierOrder>
2004-03-10 13:58:06,109 DEBUG [net.sf.hibernate.cfg.Configuration] - <null<-org.dom4j.tree.DefaultAttribute@18f5824 [Attribute: name resource value "com/triligon/entities/accounting/SupplierPayment.hbm.xml"]>
2004-03-10 13:58:06,109 INFO [net.sf.hibernate.cfg.Configuration] - <Mapping resource: com/triligon/entities/accounting/SupplierPayment.hbm.xml>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.util.DTDEntityResolver] - <found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath>
2004-03-10 13:58:06,125 INFO [net.sf.hibernate.cfg.Binder] - <Mapping class: com.triligon.entities.accounting.SupplierPayment -> SupplierPayment>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: id -> id, type: string>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: amount -> amount, type: integer>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: date -> date, type: timestamp>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: bankTransactionId -> bankTransactionId, type: string>
2004-03-10 13:58:06,125 DEBUG [net.sf.hibernate.cfg.Binder] - <Mapped property: theSupplierBill -> TheSupplierBill_FK, type: com.triligon.entities.accounting.SupplierBill>
2004-03-10 13:58:06,140 INFO [net.sf.hibernate.cfg.Binder] - <Mapping subclass: com.triligon.entities.accounting.SupplierPaymentImpl -> SupplierPayment>
2004-03-10 13:58:06,140 INFO [net.sf.hibernate.cfg.Configuration] - <Configured SessionFactory: null>
2004-03-10 13:58:06,140 DEBUG [net.sf.hibernate.cfg.Configuration] - <properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, transaction.factory_class=net.sf.hibernate.transaction.JTAT