-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Saving a collection
PostPosted: Mon May 15, 2006 4:43 am 
Beginner
Beginner

Joined: Fri Feb 24, 2006 12:52 pm
Posts: 30
An update SQL is generated for the collection element by Hibernate but an insert was never generated for this table. See below.

Hibernate version:
2.18

Mapping documents:
...
<joined-subclass name="com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl"
table="A_ESS_DATA_PICKER">

<key column="PICKER_ID"/>

<property name="entity"
column="TABL"
type="string"
not-null="true"/>

<bag name="dataPickerQueryArgMappings"
cascade="all-delete-orphan">
<key column="A_DP_QA_MAPPING_ESS"/>
<one-to-many class="com.bmc.idm.cmplmgr.bo.common.datapicker.DataPickerQueryArgMappingImpl"/>
</bag>


<bag name="essCriteriaList"
cascade="all-delete-orphan">
<key column="ESS_DATA_PICKER_ID"/>
<one-to-many class="com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo"/>
</bag>

</joined-subclass>
...
<class name="com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo" table="A_ESS_CRITERIA">


<cache usage="nonstrict-read-write"/>

<id name="id"
column="ID"
type="long"
access="property"
unsaved-value="-1">
<generator class="native"/>
</id>

<!-- <version column="VERSION_OBJ" name="versionNum" type="long" access="property" unsaved-value="negative" /> -->

<property name="fieldName"
column="FIELD_NAME"
type="string"
update="false"/>

<property name="value"
column="VALUE"
type="string"
update="false"/>

<property name="operand"
column="OPERAND"
type="com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.OperandUserType"
update="false"/>

<property name="relation"
column="LOGICAL_RELATION"
type="com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.LogicalRelationUserType"
update="false"/>
</class>


...


Code between sessionFactory.openSession() and session.close():
// transaction is opned and closed by the Test NG framework
EssDataPickerImpl dPicker = new EssDataPickerImpl();
List<ESSCriteriaBo> essCriteriaList = new ArrayList<ESSCriteriaBo>();
essCriteriaList.add(new ESSCriteriaBo("field_name","value", Operand.LIKE, LogicalRelation.AND));
dPicker.setEssCriteriaList(essCriteriaList);
dPicker.setEntity("table__" + new Date().toString());
Session session = OrmHelper.getSession();
session.save(dPicker);

Full stack trace of any exception that occurs:
No exception

Name and version of the database you are using:
Oracle 9

The generated SQL (show_sql=true):
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.SQL - update A_ESS_CRITERIA set ESS_DATA_PICKER_ID=? where ID=?
Hibernate: update A_ESS_CRITERIA set ESS_DATA_PICKER_ID=? where ID=?
(As I wrote before, no insert is done before)

Debug level Hibernate log excerpt:

2006-05-15 11:07:35,182 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - preparing statement
2006-05-15 11:07:35,510 DEBUG [main] net.sf.hibernate.id.SequenceGenerator - Sequence identifier generated: 207
2006-05-15 11:07:35,510 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:35,510 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - closing statement
2006-05-15 11:07:35,526 DEBUG [main] net.sf.hibernate.impl.SessionImpl - generated identifier: 207
2006-05-15 11:07:35,526 DEBUG [main] net.sf.hibernate.impl.SessionImpl - saving [com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl#207]
2006-05-15 11:07:35,526 DEBUG [main] net.sf.hibernate.engine.Cascades - processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:37,104 DEBUG [main] net.sf.hibernate.engine.Cascades - done processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:38,870 DEBUG [main] net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl.essCriteriaList
2006-05-15 11:07:38,885 DEBUG [main] net.sf.hibernate.engine.Cascades - processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:40,698 DEBUG [main] net.sf.hibernate.engine.Cascades - cascading to collection: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl.essCriteriaList
2006-05-15 11:07:40,713 DEBUG [main] net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2006-05-15 11:07:40,713 DEBUG [main] net.sf.hibernate.engine.Cascades - id unsaved-value: -1
2006-05-15 11:07:40,713 DEBUG [main] net.sf.hibernate.impl.SessionImpl - saveOrUpdate() previously saved instance with id: 0
2006-05-15 11:07:40,713 DEBUG [main] net.sf.hibernate.impl.SessionImpl - updating [com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo#0]
2006-05-15 11:07:40,729 DEBUG [main] net.sf.hibernate.engine.Cascades - done processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:40,745 DEBUG [main] net.sf.hibernate.transaction.JDBCTransaction - commit
2006-05-15 11:07:40,745 DEBUG [main] net.sf.hibernate.impl.SessionImpl - flushing session
2006-05-15 11:07:40,760 DEBUG [main] net.sf.hibernate.engine.Cascades - processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:41,713 DEBUG [main] net.sf.hibernate.engine.Cascades - cascading to collection: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl.essCriteriaList
2006-05-15 11:07:41,713 DEBUG [main] net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2006-05-15 11:07:41,713 DEBUG [main] net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
2006-05-15 11:07:41,713 DEBUG [main] net.sf.hibernate.engine.Cascades - done processing cascades for: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl
2006-05-15 11:07:41,713 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
2006-05-15 11:07:43,854 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Collection found: [com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl.essCriteriaList#207], was: [<unreferenced>]
2006-05-15 11:07:43,854 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Updating entity: [com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo#0]
2006-05-15 11:07:43,870 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Processing unreferenced collections
2006-05-15 11:07:43,870 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Scheduling collection removes/(re)creates/updates
2006-05-15 11:07:43,885 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Flushed: 1 insertions, 1 updates, 0 deletions to 2 objects
2006-05-15 11:07:43,885 DEBUG [main] net.sf.hibernate.impl.SessionImpl - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections
2006-05-15 11:07:43,901 DEBUG [main] net.sf.hibernate.impl.Printer - listing entities:
2006-05-15 11:07:51,948 DEBUG [main] net.sf.hibernate.impl.Printer - com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl{entity=table__Mon May 15 11:07:35 EEST 2006, dataPickerQueryArgMappings=null, dummy1=work around, essCriteriaList=[ESSCriteriaBo#0], id=207}
2006-05-15 11:07:51,948 DEBUG [main] net.sf.hibernate.impl.Printer - com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo{value=value, relation=AND, fieldName=field_name, operand=LIKE, id=0}
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.impl.SessionImpl - executing flush
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.persister.NormalizedEntityPersister - Inserting entity: [com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl#207]
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.SQL - insert into A_DATA_PICKER_BASE (DUMMY1, ID) values (?, ?)
Hibernate: insert into A_DATA_PICKER_BASE (DUMMY1, ID) values (?, ?)
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - preparing statement
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - about to open: 1 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.SQL - insert into A_ESS_DATA_PICKER (TABL, PICKER_ID) values (?, ?)
Hibernate: insert into A_ESS_DATA_PICKER (TABL, PICKER_ID) values (?, ?)
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - preparing statement
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.persister.NormalizedEntityPersister - Dehydrating entity: [com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl#207]
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.type.StringType - binding 'work around' to parameter: 1
2006-05-15 11:07:51,963 DEBUG [main] net.sf.hibernate.type.LongType - binding '207' to parameter: 2
2006-05-15 11:07:51,979 DEBUG [main] net.sf.hibernate.type.StringType - binding 'table__Mon May 15 11:07:35 EEST 2006' to parameter: 1
2006-05-15 11:07:51,979 DEBUG [main] net.sf.hibernate.type.LongType - binding '207' to parameter: 2
2006-05-15 11:07:52,073 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - done closing: 1 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:52,088 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - closing statement
2006-05-15 11:07:52,088 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:52,088 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - closing statement
2006-05-15 11:07:52,151 DEBUG [main] net.sf.hibernate.persister.EntityPersister - Updating entity: [com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo#0]
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.cache.NonstrictReadWriteCache - Invalidating: 0
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.collection.BasicCollectionPersister - Inserting collection: [com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl.essCriteriaList#207]
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.SQL - update A_ESS_CRITERIA set ESS_DATA_PICKER_ID=? where ID=?
Hibernate: update A_ESS_CRITERIA set ESS_DATA_PICKER_ID=? where ID=?
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - preparing statement
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.type.LongType - binding '207' to parameter: 1
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.type.LongType - binding '0' to parameter: 2
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - Adding to batch
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.collection.BasicCollectionPersister - done inserting collection: 1 rows inserted
2006-05-15 11:07:52,166 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - Executing batch size: 1
2006-05-15 11:07:52,229 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - success of batch update unknown: 0
2006-05-15 11:07:52,229 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2006-05-15 11:07:52,229 DEBUG [main] net.sf.hibernate.impl.BatcherImpl - closing statement
2006-05-15 11:07:52,260 DEBUG [main] net.sf.hibernate.impl.SessionImpl - post flush
2006-05-15 11:07:52,276 DEBUG [main] net.sf.hibernate.impl.SessionImpl - transaction completion
2006-05-15 11:07:52,276 DEBUG [main] net.sf.hibernate.cache.NonstrictReadWriteCache - Invalidating (again): 0
2006-05-15 11:07:52,276 DEBUG [main] net.sf.hibernate.transaction.JDBCTransaction - re-enabling autocommit
2006-05-15 11:07:52,307 DEBUG [main] net.sf.hibernate.impl.SessionImpl - closing session
2006-05-15 11:07:52,307 DEBUG [main] net.sf.hibernate.impl.SessionImpl - disconnecting session
2006-05-15 11:07:52,369 DEBUG [main] net.sf.hibernate.impl.SessionImpl - transaction completion

===============================================
Suite for Command line test
Total tests run: 1, Failures: 0, Skips: 0
===============================================

Disconnected from the target VM at '127.0.0.1:2038' using socket transport.

Process finished with exit code 0




D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\bin\java -ea -Didm.suite.home.app.dir=D:\p4client\ctsa\lambada\dev\lambada\idm_suite_home\jboss\cmpl_mgr_backend -Didm.suite.home=D:\p4client\ctsa\lambada\dev\lambada\idm_suite_home\jboss -Xdebug -Xrunjdwp:transport=dt_socket,address=TLVW2K408:2047,suspend=y,server=n -Dfile.encoding=windows-1252 -classpath "D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\charsets.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\deploy.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\javaws.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\jce.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\jsse.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\plugin.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\rt.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\ext\dnsns.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\ext\localedata.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\ext\sunjce_provider.jar;D:\p4client\3rd_party\JDK\1.5.0_02\WIN\JDK\Development\jre\lib\ext\sunpkcs11.jar;C:\out;D:\p4client\ctsa\lambada\dev\lambada\dev\build\cmpl_mgr.ear\classes;D:\p4client\ctsa\lambada\dev\lambada\dev\build\cmpl_mgr.ear\cmpl_mgr-backend.jar;D:\p4client\ctsa\lambada\dev\lambada\dev\build\cmpl_mgr.war\WEB-INF\classes;D:\p4client\ctsa\lambada\dev\lambada\dev\lib\runtime\common\cmpl-mgr-module-schema.jar;D:\p4client\ctsa\cdm-web-service-client\dev\cdm-web-service-client\dist\cmpl-mgr-rem.jar;D:\p4client\ctsa\cdm-web-service-client\dev\cdm-web-service-client\dist\cmpl-mgr-rep.jar;D:\p4client\3rd_party\testng\testng-4.5\dist\testng-4.5-jdk15.jar;D:\p4client\3rd_party\RemedyARS\RemedyARS-6.3\dist\arapi63.jar;D:\p4client\ctsa\suite-sdk\dev\suite-sdk\dist\websphere\bmc-common.jar;D:\p4client\ctsa\suite-sdk\dev\suite-sdk\dist\websphere\bmc-security.jar;D:\p4client\ctsa\suite-sdk\dev\suite-sdk\dist\websphere\glue-client.jar;D:\p4client\ctsa\suite-sdk\dev\suite-sdk\dist\websphere\open-services-client.jar;D:\p4client\3rd_party\hibernate\hibernate-2.1.8\dist\dom4j-1.4.jar;D:\p4client\3rd_party\hibernate\hibernate-2.1.8\dist\hibernate2.jar;D:\p4client\3rd_party\hibernate\hibernate-2.1.8\dist\odmg-3.0.jar;D:\p4client\3rd_party\velocity\velocity-1.4\dist\velocity-1.4.jar;D:\p4client\3rd_party\jakarta-commons-lang\jakarta-commons-lang-2.0\dist\commons-lang-2.0.jar;D:\p4client\3rd_party\jakarta-commons-io\jakarta-commons-io-1.0\dist\commons-io-1.0.jar;D:\p4client\3rd_party\junit\junit-3.8.1\dist\junit.jar;D:\p4client\3rd_party\retroweaver-compile\retroweaver-compile-1.1\dist\retroweaver-ex.jar;D:\p4client\3rd_party\retroweaver-rt\retroweaver-rt-1.1\dist\websphere\retroweaver-rt.jar;D:\p4client\3rd_party\xstream\xstream-1.1.1\dist\xstream-1.1.1.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\activation.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\connector-api.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\ejb.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\jms.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\jta_101.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\mail.jar;D:\p4client\3rd_party\j2sdkee\j2sdkee-1.3.1\dist\servlet-api.jar;D:\p4client\3rd_party\log4j\log4j-1.2.9\dist\log4j-1.2.9.jar;D:\p4client\3rd_party\xml-commons\xml-commons-1.0.b2\dist\resolver.jar;D:\p4client\3rd_party\xml-commons\xml-commons-1.0.b2\dist\which.jar;D:\p4client\3rd_party\xml-commons\xml-commons-1.0.b2\dist\xml-apis.jar;D:\p4client\3rd_party\jakarta-oro\jakarta-oro-2.0.8\dist\jakarta-oro-2.0.8.jar;D:\p4client\3rd_party\jakarta-commons-beanutils\jakarta-commons-beanutils-1.7\dist\commons-beanutils.jar;D:\p4client\3rd_party\jakarta-commons-collections\jakarta-commons-collections-3.1\dist\commons-collections-3.1.jar;D:\p4client\3rd_party\jakarta-commons-fileupload\jakarta-commons-fileupload-1.0\dist\commons-fileupload-1.0.jar;D:\p4client\3rd_party\jakarta-commons-logging\jakarta-commons-logging-1.0.4\dist\commons-logging-api.jar;D:\p4client\3rd_party\jakarta-commons-logging\jakarta-commons-logging-1.0.4\dist\commons-logging.jar;D:\p4client\3rd_party\jakarta-commons-validator\jakarta-commons-validator-1.1.3\dist\commons-validator-1.1.3.jar;D:\p4client\3rd_party\jakarta-commons-digester\jakarta-commons-digester-1.6\dist\commons-digester.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\ant-1.5.2.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\asm-1.5.4-snapshot.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\asm-attrs-1.5.4-snapshot.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\asm-util-1.5.4-snapshot.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\aspectwerkz-2.0.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\aspectwerkz-core-2.0.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\aspectwerkz-extensions-2.0.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\aspectwerkz-jdk14-2.0.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\dom4j-1.4.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\jrexx-1.1.1.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\managementapi-jrockit81.jar;D:\p4client\3rd_party\aspectwerkz\aspectwerkz-2.0_patch1\dist\trove-1.0.2.jar;D:\p4client\3rd_party\jakarta-commons-cli\jakarta-commons-cli-1.0\dist\commons-cli-1.0.jar;D:\p4client\3rd_party\jakarta-commons-dbcp\jakarta-commons-dbcp-1.2.1\dist\commons-dbcp-1.2.1.jar;D:\p4client\3rd_party\jakarta-commons-httpclient\jakarta-commons-httpclient-2.0.2\dist\commons-httpclient-2.0.2.jar;D:\p4client\3rd_party\jakarta-commons-net\jakarta-commons-net-1.1.0\dist\commons-net-1.1.0.jar;D:\p4client\3rd_party\jakarta-commons-pool\jakarta-commons-pool-1.2\dist\commons-pool-1.2.jar;D:\p4client\3rd_party\quartz\quartz-1.4.5\dist\quartz.jar;D:\p4client\3rd_party\cglib\cglib-2.1\dist\cglib-2.1.jar;D:\p4client\3rd_party\bcel\bcel-5.1\dist\bcel-5.1.jar;D:\p4client\3rd_party\iText\iText-1.2\dist\itext-1.2.jar;D:\p4client\3rd_party\xmlbeans\xmlbeans-1.0.3\dist\websphere\xbean.jar;D:\p4client\3rd_party\xmlbeans\xmlbeans-1.0.3\dist\websphere\xbean_xpath.jar;D:\p4client\3rd_party\xmlrpc\xmlrpc-1.2-b1\dist\xmlrpc-1.2-b1-patched.jar;D:\p4client\3rd_party\multipartrequest\multipartrequest-1.30rc1\dist\multipartrequest.jar;D:\p4client\3rd_party\jfreechart\jfreechart-1.0.0-pre2\dist\jcommon-1.0.0-pre2.jar;D:\p4client\3rd_party\jfreechart\jfreechart-1.0.0-pre2\dist\jfreechart-1.0.0-pre2.jar;D:\p4client\3rd_party\xpp3\xpp3-1.1.2\dist\xpp3.jar;D:\p4client\3rd_party\wsdl4j\wsdl4j-1.4\dist\wsdl4j-1.4.jar;D:\p4client\3rd_party\velocity-tools-generic\velocity-tools-generic-1.1\dist\velocity-tools-generic-1.1.jar;D:\p4client\3rd_party\spring-framework\spring-framework-1.2\dist\spring-mock.jar;D:\p4client\3rd_party\spring-framework\spring-framework-1.2\dist\spring.jar;D:\p4client\3rd_party\propertyset\propertyset-1.3\dist\propertyset-1.3.jar;D:\p4client\3rd_party\pdfbox\pdfbox-0.7.1\dist\PDFBox-0.7.1.jar;D:\p4client\3rd_party\ognl\ognl-2.6.7\dist\ognl-2.6.7.jar;D:\p4client\3rd_party\jrexx\jrexx-1.1.1\dist\jrexx-1.1.1.jar;D:\p4client\3rd_party\jdom\jdom-1.0b9\dist\jdom-1.0b9.jar;D:\p4client\3rd_party\jcs\jcs-1.0-dev\dist\jcs-1.0-dev.jar;D:\p4client\3rd_party\jboss-client\jboss-client-3.2.6\dist\jboss-j2ee.jar;D:\p4client\3rd_party\jboss-client\jboss-client-3.2.6\dist\jboss.jar;D:\p4client\3rd_party\jboss-client\jboss-client-3.2.6\dist\jbossall-client.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-cache.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-common-jdbc-wrapper.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-common.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-j2ee.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-jmx.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jboss-system.jar;D:\p4client\3rd_party\jboss\jboss-3.2.6\dist\jnp-client.jar;D:\p4client\3rd_party\jaxen\jaxen-1.0\dist\jaxen-full.jar;D:\p4client\3rd_party\javassist\javassist-3.0RC1\dist\javassist-3.0RC1.jar;D:\p4client\3rd_party\ehcache\ehcache-1.1\dist\ehcache-1.1.jar;D:\p4client\3rd_party\dom4j\dom4j-1.4\dist\dom4j-1.4.jar;D:\p4client\3rd_party\saxpath\saxpath-1.0-fcs\dist\saxpath-1.0-fcs.jar;D:\p4client\3rd_party\pmd\pmd-2.2-patched\dist\pmd-2.2-patched.jar;D:\p4client\3rd_party\qdox\qdox-1.4\dist\qdox-1.4.jar;D:\p4client\3rd_party\xjavadoc\xjavadoc-1.0\dist\xjavadoc-1.0.jar;D:\p4client\3rd_party\jdbcdrivers\jdbcdrivers-1.0\dist\jtds-1.2.jar;D:\p4client\3rd_party\jdbcdrivers\jdbcdrivers-1.0\dist\msbase.jar;D:\p4client\3rd_party\jdbcdrivers\jdbcdrivers-1.0\dist\mssqlserver.jar;D:\p4client\3rd_party\jdbcdrivers\jdbcdrivers-1.0\dist\msutil.jar;D:\p4client\3rd_party\jdbcdrivers\jdbcdrivers-1.0\dist\ojdbc14.jar;D:\p4client\3rd_party\concurrent\concurrent-1.3.3\dist\concurrent-1.3.3.jar;D:\p4client\3rd_party\hibernate-extensions\hibernate-extensions-2.1.3\dist\hibernate-tools.jar;D:\p4client\3rd_party\hibernate-extensions\hibernate-extensions-2.1.3\dist\hibernateconsole.jar;D:\p4client\3rd_party\ognl-common\ognl-common-1.2.2\dist\ognl-common-1.2.2.jar;D:\p4client\3rd_party\apache-xml\apache-xml-1.0\dist\resolver.jar;D:\p4client\3rd_party\apache-xml\apache-xml-1.0\dist\which.jar;D:\p4client\3rd_party\apache-xml\apache-xml-1.0\dist\xalan.jar;D:\p4client\3rd_party\apache-xml\apache-xml-1.0\dist\xercesImpl.jar;D:\p4client\3rd_party\apache-xml\apache-xml-1.0\dist\xml-apis.jar;D:\p4client\3rd_party\castor\castor-0.9.5.2\dist\castor-0.9.5.2-xml.jar;D:\p4client\3rd_party\xalan-j\xalan-j_2_3_1_01\dist\xalan.jar;D:\p4client\3rd_party\xalan-j\xalan-j_2_3_1_01\dist\xercesImpl.jar;D:\p4client\3rd_party\javatar\javatar-2.5\dist\tar.jar;D:\p4client\3rd_party\jaxrpc\jaxrpc-1.1.2\dist\jaxrpc-api.jar;/D:/Documents and Settings/abalderm/.IntelliJIdea50/config/plugins/testngrunner/lib/testng-4.5-jdk15.jar;/D:/Documents and Settings/abalderm/.IntelliJIdea50/config/plugins/testngrunner/lib/testngrunner.jar;D:\JetBrains\IntelliJ IDEA 5.0\lib\idea_rt.jar" org.testng.remote.RemoteTestNG -port 5000 -testclass com.bmc.idm.cmplmgr._common.DataPickerTest
Connected to the target VM at '127.0.0.1:2047' using socket transport.
################### Start to init the cmpl_mgr_backend Logger ###################
2006-05-15 11:14:12,271 INFO [main] net.sf.hibernate.cfg.Environment - Hibernate 2.1.8
2006-05-15 11:14:12,286 INFO [main] net.sf.hibernate.cfg.Environment - hibernate.properties not found
2006-05-15 11:14:12,286 INFO [main] net.sf.hibernate.cfg.Environment - using CGLIB reflection optimizer
2006-05-15 11:14:12,286 INFO [main] net.sf.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
2006-05-15 11:14:12,630 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:12,646 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:13,115 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.a2.common.AbstractPrincipal -> PRINCIPAL
2006-05-15 11:14:13,443 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:13,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: externalId -> EXTERNAL_ID, type: string
2006-05-15 11:14:13,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: essLoginProfile -> ESS_LOGIN_PROFILE, type: string
2006-05-15 11:14:13,505 INFO [main] net.sf.hibernate.cfg.Binder - Mapping collection: com.bmc.idm.cmplmgr.a2.common.AbstractPrincipal.moduleBases -> POLICY_ADMIN
2006-05-15 11:14:13,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: moduleBases, type: java.util.Collection
2006-05-15 11:14:13,615 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyViewers, type: java.util.Collection
2006-05-15 11:14:13,677 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: ownedPolicies, type: java.util.Collection
2006-05-15 11:14:13,677 INFO [main] net.sf.hibernate.cfg.Binder - Mapping collection: com.bmc.idm.cmplmgr.a2.common.AbstractPrincipal.viewedGroups -> GROUP_VIEWER
2006-05-15 11:14:13,677 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: viewedGroups, type: java.util.Collection
2006-05-15 11:14:13,896 INFO [main] net.sf.hibernate.cfg.Binder - Mapping subclass: com.bmc.idm.cmplmgr.a2.common.ProfileImpl -> PRINCIPAL
2006-05-15 11:14:13,896 INFO [main] net.sf.hibernate.cfg.Binder - Mapping subclass: com.bmc.idm.cmplmgr.a2.common.PersonImpl -> PRINCIPAL
2006-05-15 11:14:13,927 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:13,927 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:13,990 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.AllowedExceptionFieldValueImpl -> ALLOWED_EXCEPTION_FIELD_VALUE
2006-05-15 11:14:14,005 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.AllowedExceptionFieldValueImpl usage strategy: read-write
2006-05-15 11:14:14,021 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:14,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: resultsetColumn -> RESULTSET_ID, type: com.bmc.idm.cmplmgr.bo.common.result.ResultsetColumnImpl
2006-05-15 11:14:14,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: value -> VALUE, type: string
2006-05-15 11:14:14,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: allowedException -> ALLOWED_EXCEPTION_ID, type: com.bmc.idm.cmplmgr.bo.common.AllowedExceptionImpl
2006-05-15 11:14:14,068 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:14,068 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:14,224 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.AllowedExceptionImpl -> ALLOWED_EXCEPTION
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.AllowedExceptionImpl usage strategy: read-write
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: expiration -> EXPIRATION, type: timestamp
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: note -> NOTE, type: string
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: created -> CREATED, type: timestamp
2006-05-15 11:14:14,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: unApproved -> UNAPPROVED, type: timestamp
2006-05-15 11:14:14,255 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: creator -> CREATOR_ID, type: com.bmc.idm.cmplmgr.a2.common.PersonImpl
2006-05-15 11:14:14,255 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyBase -> POLICY_BASE_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl
2006-05-15 11:14:14,271 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: allowedExceptionFieldValues, type: java.util.Collection
2006-05-15 11:14:14,286 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:14,302 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:14,380 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl -> POLICY_BASE
2006-05-15 11:14:14,380 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl usage strategy: read-write
2006-05-15 11:14:14,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:14,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: latestPolicyName -> LATEST_POLICY_NAME, type: string
2006-05-15 11:14:14,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: latest -> LATEST_POLICY_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyImpl
2006-05-15 11:14:14,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: responsiveEntity -> RESPONSIVE_ENTITY_ID, type: com.bmc.idm.cmplmgr.bo.common.responsiveaction.ResponsiveEntityImpl
2006-05-15 11:14:14,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: moduleBase -> MODULE_BASE_ID, type: com.bmc.idm.cmplmgr.bo.common.module.ModuleBaseImpl
2006-05-15 11:14:14,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyViewers, type: java.util.Collection
2006-05-15 11:14:14,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policies, type: java.util.Collection
2006-05-15 11:14:14,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: allowedExceptions, type: java.util.Collection
2006-05-15 11:14:14,458 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.PolicyImpl -> POLICY
2006-05-15 11:14:14,474 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.PolicyImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:14,490 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:14,490 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: name -> NAME, type: string
2006-05-15 11:14:14,490 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: version -> VERSION, type: long
2006-05-15 11:14:14,490 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: cronExpression -> CRON_EXPRESSION, type: string
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: inactive -> INACTIVE, type: boolean
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: disabled -> DISABLED, type: boolean
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: description -> DESCRIPTION, type: string
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: lowThreshold -> LOW_THRESHOLD, type: long
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: highThreshold -> HIGH_THRESHOLD, type: long
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: maxNumberOfExceptions -> MAX_NUM_OF_EXCEPTIONS, type: long
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: percentageThreshold -> PERCENTAGE_THRESHOLD, type: boolean
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: created -> CREATED, type: timestamp
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: tableName -> TABLE_NAME, type: string
2006-05-15 11:14:14,505 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: retentionPeriod -> RETENTION_PERIOD, type: long
2006-05-15 11:14:14,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: approvedExceptionDuration -> APPROVED_EXCEPTION_DURATION, type: long
2006-05-15 11:14:14,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: formulaType -> FORMULA_TYPE, type: string
2006-05-15 11:14:14,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: base -> POLICY_BASE_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl
2006-05-15 11:14:14,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: owner -> OWNER_ID, type: com.bmc.idm.cmplmgr.a2.common.PersonImpl
2006-05-15 11:14:14,552 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: latestRun -> LATEST_RUN_ID, type: com.bmc.idm.cmplmgr.bo.common.RunImpl
2006-05-15 11:14:14,552 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: creator -> CREATOR_ID, type: com.bmc.idm.cmplmgr.a2.common.PersonImpl
2006-05-15 11:14:14,552 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: runs, type: java.util.Collection
2006-05-15 11:14:14,568 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: queryArgValues, type: java.util.Collection
2006-05-15 11:14:14,583 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: queryDefsData, type: java.util.Collection
2006-05-15 11:14:14,615 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:14,615 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:14,724 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.PolicyViewerImpl -> POLICY_VIEWER
2006-05-15 11:14:14,724 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.PolicyViewerImpl usage strategy: read-write
2006-05-15 11:14:14,724 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:14,724 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: canSetAllowedException -> CAN_SET_ALLOWED_EXCEPTION, type: boolean
2006-05-15 11:14:14,740 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyBase -> POLICY_BASE_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl
2006-05-15 11:14:14,740 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: principal -> PRINCIPAL_ID, type: com.bmc.idm.cmplmgr.a2.common.AbstractPrincipal
2006-05-15 11:14:14,771 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyViewerValues, type: java.util.Collection
2006-05-15 11:14:14,974 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:14,990 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,083 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.PolicyViewerValueImpl -> POLICY_VIEWER_VALUE
2006-05-15 11:14:15,083 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,083 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: value -> VALUE, type: string
2006-05-15 11:14:15,083 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyViewer -> POLICY_VIEWER_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyViewerImpl
2006-05-15 11:14:15,083 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: resultsetColumn -> RESULTSET_ID, type: com.bmc.idm.cmplmgr.bo.common.result.ResultsetColumnImpl
2006-05-15 11:14:15,115 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,115 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,161 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.QueryArgValueImpl -> A_QUERY_ARG_VALUE
2006-05-15 11:14:15,161 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.QueryArgValueImpl usage strategy: read-write
2006-05-15 11:14:15,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: value -> VALUE, type: string
2006-05-15 11:14:15,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policy -> POLICY_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyImpl
2006-05-15 11:14:15,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: queryArg -> QUERY_ARG_ID, type: com.bmc.idm.cmplmgr.bo.common.query.arg.AbstarctQueryArgBase
2006-05-15 11:14:15,224 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: rowIndex -> ROW_INDEX, type: integer
2006-05-15 11:14:15,271 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,286 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,349 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.RunImpl -> RUN
2006-05-15 11:14:15,349 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.RunImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:15,349 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: exceptionTrend -> EXCEPTION_TREND, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: percentageValue -> PERCENTAGE_VALUE, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: numberOfExceptions -> NUMBER_OF_EXCEPTIONS, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: numberOfAllowedExceptions -> NUMBER_OF_ALLOWED_EXCEPTIONS, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: populationNumber -> POPULATION_NUMBER, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: lowThreshold -> LOW_THRESHOLD, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: highThreshold -> HIGH_THRESHOLD, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: maxNumberOfExceptions -> MAX_NUM_OF_EXCEPTIONS, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: grade -> GRADE, type: integer
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: numberOfExceptionsGone -> NUMBER_OF_EXCEPTIONS_GONE, type: long
2006-05-15 11:14:15,365 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: numberOfExceptionsAdded -> NUMBER_OF_EXCEPTIONS_ADDED, type: long
2006-05-15 11:14:15,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: finished -> FINISHED, type: boolean
2006-05-15 11:14:15,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: runTime -> RUN_TIME, type: timestamp
2006-05-15 11:14:15,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policy -> POLICY_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyImpl
2006-05-15 11:14:15,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: module -> MODULE_ID, type: com.bmc.idm.cmplmgr.bo.common.module.ModuleImpl
2006-05-15 11:14:15,411 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,458 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,536 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.RunStatusImpl -> RUN_STATUS
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.RunStatusImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: runId -> RUN_ID, type: long
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: runTime -> RUN_TIME, type: timestamp
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: status -> STATUS, type: integer
2006-05-15 11:14:15,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: errorMessage -> ERROR_MESSAGE, type: string
2006-05-15 11:14:15,568 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,583 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,630 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datapicker.AbstractDP -> A_DATA_PICKER_BASE
2006-05-15 11:14:15,630 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datapicker.AbstractDP usage strategy: nonstrict-read-write
2006-05-15 11:14:15,630 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,630 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: dummy1 -> DUMMY1, type: string
2006-05-15 11:14:15,740 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.backend.datapicker.SqlDataPickerImpl -> A_SQL_DATA_PICKER
2006-05-15 11:14:15,740 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: entity -> TABL, type: string
2006-05-15 11:14:15,755 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: dataPickerQueryArgMappings, type: java.util.Collection
2006-05-15 11:14:15,771 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: where -> WHERE_PHRASE, type: string
2006-05-15 11:14:15,771 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.backend.datapicker.EssDataPickerImpl -> A_ESS_DATA_PICKER
2006-05-15 11:14:15,786 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: entity -> TABL, type: string
2006-05-15 11:14:15,786 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: dataPickerQueryArgMappings, type: java.util.Collection
2006-05-15 11:14:15,802 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: essCriteriaList, type: java.util.Collection
2006-05-15 11:14:15,802 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.common.datapicker.custom.CustomDataPickerImpl -> A_CUSTOM_DATA_PICKER
2006-05-15 11:14:15,802 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: fqcn -> FQCN, type: string
2006-05-15 11:14:15,818 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.backend.datapicker.LdapDataPickerImpl -> A_LDAP_DATA_PICKER
2006-05-15 11:14:15,818 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: entity -> TABL, type: string
2006-05-15 11:14:15,818 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: ldapFilter -> LDAP_FILTER, type: string
2006-05-15 11:14:15,818 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: dataPickerQueryArgMappings, type: java.util.Collection
2006-05-15 11:14:15,849 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,865 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,880 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datapicker.DataPickerQueryArgMappingImpl -> A_DP_QA_MAP
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datapicker.DataPickerQueryArgMappingImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: queryArgName -> QUERY_ARG_NAME, type: string
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: column -> COLUM, type: string
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: visible -> VISIBLE, type: boolean
2006-05-15 11:14:15,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: persistent -> PERSISTENT, type: boolean
2006-05-15 11:14:15,911 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:15,911 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:15,974 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo -> A_ESS_CRITERIA
2006-05-15 11:14:15,990 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.ESSCriteriaBo usage strategy: nonstrict-read-write
2006-05-15 11:14:15,990 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:15,990 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: fieldName -> FIELD_NAME, type: string
2006-05-15 11:14:15,990 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: value -> VALUE, type: string
2006-05-15 11:14:16,036 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: operand -> OPERAND, type: com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.OperandUserType
2006-05-15 11:14:16,068 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: relation -> LOGICAL_RELATION, type: com.bmc.idm.cmplmgr.bo.common.datapicker.rdbms.ess.LogicalRelationUserType
2006-05-15 11:14:16,083 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,099 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,177 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datasource.AbstractAuditedDataSource -> AUDITED_DATASOURCE
2006-05-15 11:14:16,177 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datasource.AbstractAuditedDataSource usage strategy: nonstrict-read-write
2006-05-15 11:14:16,177 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,177 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: name -> NAME, type: string
2006-05-15 11:14:16,177 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: description -> DESCRIPTION, type: string
2006-05-15 11:14:16,193 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: host -> HOST, type: string
2006-05-15 11:14:16,193 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: port -> PORT, type: string
2006-05-15 11:14:16,193 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: userName -> USER_NAME, type: string
2006-05-15 11:14:16,193 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: password -> PASSWORD, type: string
2006-05-15 11:14:16,193 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: enabled -> ENABLED, type: boolean
2006-05-15 11:14:16,224 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.common.datasource.ldap.LdapAuditedDataSourceImpl -> LDAP_DS
2006-05-15 11:14:16,240 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: baseDN -> BASEDN, type: string
2006-05-15 11:14:16,240 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: secure -> SECURE, type: boolean
2006-05-15 11:14:16,271 INFO [main] net.sf.hibernate.cfg.Binder - Mapping joined-subclass: com.bmc.idm.cmplmgr.bo.common.datasource.sql.SqlAuditedDataSourceImpl -> SQL_DS
2006-05-15 11:14:16,271 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: databaseName -> DATABASE_NAME, type: string
2006-05-15 11:14:16,286 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: vendor -> VENDOR, type: com.bmc.idm.cmplmgr.bo.common.datasource.sql.SqlVendorTypeUserType
2006-05-15 11:14:16,333 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,333 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,380 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datasourceresult.DataSourceResultHolderImpl -> A_DATA_SOURCE_RESULT
2006-05-15 11:14:16,380 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datasourceresult.DataSourceResultHolderImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:16,380 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: sqlDataSourceResult -> SQL_DATA_SOURCE_ID, type: com.bmc.idm.cmplmgr.bo.common.datasourceresult.SqlDataSourceResultImpl
2006-05-15 11:14:16,411 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: ldapDataSourceResult -> LDAP_DATA_SOURCE_ID, type: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapDataSourceResultImpl
2006-05-15 11:14:16,443 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,443 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,521 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapConverterImpl -> A_LDAP_CONVERTER
2006-05-15 11:14:16,521 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapConverterImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:16,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: fqcn -> FQCN, type: string
2006-05-15 11:14:16,536 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: ldapAttributeType -> LDAP_ATTRIBUTE_TYPE, type: com.bmc.idm.cmplmgr.bo.common.query.ldap.LdapAttributeTypeUserType
2006-05-15 11:14:16,568 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,583 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,599 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapDataSourceResultImpl -> A_LDAP_DATA_SOURCE_RESULT
2006-05-15 11:14:16,599 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapDataSourceResultImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:16,599 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,599 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: objectClass -> OBJECT_CLASS, type: string
2006-05-15 11:14:16,615 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: attribute -> ATTRIBUTE, type: string
2006-05-15 11:14:16,615 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: LdapConverter -> LDAP_CONVERTER_ID, type: com.bmc.idm.cmplmgr.bo.common.datasourceresult.LdapConverterImpl
2006-05-15 11:14:16,630 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,646 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,740 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.datasourceresult.SqlDataSourceResultImpl -> A_SQL_DATA_SOURCE_RESULT
2006-05-15 11:14:16,740 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.datasourceresult.SqlDataSourceResultImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:16,740 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,740 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: column -> COLUM, type: string
2006-05-15 11:14:16,786 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,786 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:16,849 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.group.AbstractGroup -> GROUPS
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.group.AbstractGroup usage strategy: read-write
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: versionNum -> VERSION_OBJ, type: long
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: name -> NAME, type: string
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: description -> DESCRIPTION, type: string
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: formulaType -> FORMULA_TYPE, type: string
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: responsiveEntity -> RESPONSIVE_ENTITY_ID, type: com.bmc.idm.cmplmgr.bo.common.responsiveaction.ResponsiveEntityImpl
2006-05-15 11:14:16,849 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: owner -> OWNER_ID, type: com.bmc.idm.cmplmgr.a2.common.PersonImpl
2006-05-15 11:14:16,865 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: latestStatus -> LATEST_STATUS_ID, type: com.bmc.idm.cmplmgr.bo.common.group.GroupStatusImpl
2006-05-15 11:14:16,880 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: parentGroups, type: java.util.Collection
2006-05-15 11:14:16,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: groupStatuses, type: java.util.Collection
2006-05-15 11:14:16,896 INFO [main] net.sf.hibernate.cfg.Binder - Mapping collection: com.bmc.idm.cmplmgr.bo.common.group.AbstractGroup.groupViewers -> GROUP_VIEWER
2006-05-15 11:14:16,896 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: groupViewers, type: java.util.Collection
2006-05-15 11:14:16,896 INFO [main] net.sf.hibernate.cfg.Binder - Mapping subclass: com.bmc.idm.cmplmgr.bo.common.group.GroupOfGroupsImpl -> GROUPS
2006-05-15 11:14:16,911 INFO [main] net.sf.hibernate.cfg.Binder - Mapping subclass: com.bmc.idm.cmplmgr.bo.common.group.GroupOfPoliciesImpl -> GROUPS
2006-05-15 11:14:16,943 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:16,943 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:17,036 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.group.GroupStatusImpl -> GROUP_STATUS
2006-05-15 11:14:17,036 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.group.GroupStatusImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:17,036 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:17,036 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: versionNum -> VERSION_OBJ, type: long
2006-05-15 11:14:17,036 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: status -> STATUS, type: integer
2006-05-15 11:14:17,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: created -> CREATED, type: timestamp
2006-05-15 11:14:17,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: highThreshold -> HIGHTHRESHOLD, type: integer
2006-05-15 11:14:17,052 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: lowThreshold -> LOWTHRESHOLD, type: integer
2006-05-15 11:14:17,068 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: group -> GROUP_ID, type: com.bmc.idm.cmplmgr.bo.common.group.AbstractGroup
2006-05-15 11:14:17,099 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:17,099 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:17,146 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.group.GroupToGroupConnectionImpl -> GROUP_GROUP
2006-05-15 11:14:17,146 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.group.GroupToGroupConnectionImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:17,146 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:17,146 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: versionNum -> VERSION_OBJ, type: long
2006-05-15 11:14:17,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: impact -> IMPACT, type: com.bmc.idm.cmplmgr.bo.common.group.ImpactTypeUserType
2006-05-15 11:14:17,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: parentGroup -> PARENT_GROUP_ID, type: com.bmc.idm.cmplmgr.bo.common.group.GroupOfGroupsImpl
2006-05-15 11:14:17,161 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: childGroup -> CHILD_GROUP_ID, type: com.bmc.idm.cmplmgr.bo.common.group.AbstractGroup
2006-05-15 11:14:17,208 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:17,208 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:17,271 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.group.PolicyToGroupConnectionImpl -> POLICY_GROUP
2006-05-15 11:14:17,271 DEBUG [main] net.sf.hibernate.cache.CacheFactory - cache for: com.bmc.idm.cmplmgr.bo.common.group.PolicyToGroupConnectionImpl usage strategy: nonstrict-read-write
2006-05-15 11:14:17,271 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:17,271 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: versionNum -> VERSION_OBJ, type: long
2006-05-15 11:14:17,271 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: impact -> IMPACT, type: com.bmc.idm.cmplmgr.bo.common.group.ImpactTypeUserType
2006-05-15 11:14:17,286 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: parentGroup -> PARENT_GROUP_ID, type: com.bmc.idm.cmplmgr.bo.common.group.GroupOfPoliciesImpl
2006-05-15 11:14:17,286 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: childPolicyBase -> CHILD_POLICY_BASE_ID, type: com.bmc.idm.cmplmgr.bo.common.PolicyBaseImpl
2006-05-15 11:14:17,333 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
2006-05-15 11:14:17,333 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
2006-05-15 11:14:17,396 INFO [main] net.sf.hibernate.cfg.Binder - Mapping class: com.bmc.idm.cmplmgr.bo.common.module.ModuleBaseImpl -> MODULE_BASE
2006-05-15 11:14:17,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: id -> ID, type: long
2006-05-15 11:14:17,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: name -> NAME, type: string
2006-05-15 11:14:17,396 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: reportingMode -> REPORTING_MODE, type: boolean
2006-05-15 11:14:17,411 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: resultsetColumns, type: java.util.Collection
2006-05-15 11:14:17,411 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: parameterGroups, type: java.util.Collection
2006-05-15 11:14:17,427 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: parameters, type: java.util.Collection
2006-05-15 11:14:17,427 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: calculatedParameters, type: java.util.Collection
2006-05-15 11:14:17,427 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: scopeFieldGroups, type: java.util.Collection
2006-05-15 11:14:17,427 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: scopeFields, type: java.util.Collection
2006-05-15 11:14:17,443 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: calculatedScopeFields, type: java.util.Collection
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: queries, type: java.util.Collection
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: postQueries, type: java.util.Collection
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyBases, type: java.util.Collection
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: tableName -> TABLE_NAME, type: string
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: moduleVersions, type: java.util.Collection
2006-05-15 11:14:17,458 INFO [main] net.sf.hibernate.cfg.Binder - Mapping collection: com.bmc.idm.cmplmgr.bo.common.module.ModuleBaseImpl.policyAdmins -> POLICY_ADMIN
2006-05-15 11:14:17,458 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: policyAdmins, type: java.util.Collection
2006-05-15 11:14:17,474 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: latest -> LATEST_MODULE_ID, type: com.bmc.idm.cmplmgr.bo.common.module.ModuleImpl
2006-05-15 11:14:17,521 DEBUG [main] net.sf.hibernate.cfg.Binder - Mapped property: moduleString -> MODULE_STRING, type: com.bmc.idm.cmplmgr.bo.backend.XmlClobType
2006-05-15 11:14:17,552 DEBUG [main] net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath

_________________
Avishay Balderman


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 15, 2006 7:56 am 
Beginner
Beginner

Joined: Fri Feb 24, 2006 12:52 pm
Posts: 30
Solved - [a bug in the pojo]

_________________
Avishay Balderman


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.