-->
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.  [ 5 posts ] 
Author Message
 Post subject: IllegalArgumentException with composite ID
PostPosted: Wed Feb 18, 2004 6:32 am 
Beginner
Beginner

Joined: Mon Nov 24, 2003 12:44 pm
Posts: 40
I am using Hibernate 2.1.2 within Websphere Studio recompiled and running under IBM JDK1.3.1.
I have a legacy schema which uses composite ids, most of which seems to be working fine apart from when queries involve the link between tables TIA00573 and TIA00571, when it trips up with the following exception...
Code:
10:04:50,625 ERROR - IllegalArgumentException in class: com.landg.clex.hibernate.Tia00573PK, getter method of property: tia00571
10:04:50,625 ERROR - Exception initializing proxy
net.sf.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.landg.clex.hibernate.Tia00573PK.tia00571
   at net.sf.hibernate.property.BasicPropertyAccessor$BasicGetter.get(BasicPropertyAccessor.java:110)
   at net.sf.hibernate.type.ComponentType.getPropertyValue(ComponentType.java:179)
   at net.sf.hibernate.type.ComponentType.getPropertyValues(ComponentType.java:205)
   at net.sf.hibernate.type.ComponentType.nullSafeGetValues(ComponentType.java:164)
   at net.sf.hibernate.type.ComponentType.nullSafeSet(ComponentType.java:151)
   at net.sf.hibernate.loader.Loader.bindPositionalParameters(Loader.java:674)
   at net.sf.hibernate.loader.Loader.prepareQueryStatement(Loader.java:713)
   at net.sf.hibernate.loader.Loader.doQuery(Loader.java:185)
   at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
   at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:831)
   at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:851)
   at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:57)
   at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:49)
   at net.sf.hibernate.persister.EntityPersister.load(EntityPersister.java:419)
   at net.sf.hibernate.impl.SessionImpl.doLoad(SessionImpl.java:2081)
   at net.sf.hibernate.impl.SessionImpl.doLoadByClass(SessionImpl.java:1982)
   at net.sf.hibernate.impl.SessionImpl.internalLoadOneToOne(SessionImpl.java:1909)
   at net.sf.hibernate.type.OneToOneType.resolveIdentifier(OneToOneType.java:72)
   at net.sf.hibernate.type.EntityType.resolveIdentifier(EntityType.java:215)
   at net.sf.hibernate.impl.SessionImpl.initializeEntity(SessionImpl.java:2169)
   at net.sf.hibernate.loader.Loader.doQuery(Loader.java:240)
   at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
   at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:831)
   at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:851)
   at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:57)
   at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:49)
   at net.sf.hibernate.persister.EntityPersister.load(EntityPersister.java:419)
   at net.sf.hibernate.impl.SessionImpl.doLoad(SessionImpl.java:2081)
   at net.sf.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:1899)
   at net.sf.hibernate.proxy.LazyInitializer.initialize(LazyInitializer.java:53)
   at net.sf.hibernate.proxy.LazyInitializer.initializeWrapExceptions(LazyInitializer.java:60)
   at net.sf.hibernate.proxy.LazyInitializer.getImplementation(LazyInitializer.java:164)
   at net.sf.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:108)
   at com.landg.clex.hibernate.Tia00571$$EnhancerByCGLIB$$ae7f410b.hashCode(<generated>)
   at org.apache.commons.lang.builder.HashCodeBuilder.append(HashCodeBuilder.java:297)
   at com.landg.clex.hibernate.Tia00573PK.hashCode(Tia00573PK.java:47)
   at net.sf.hibernate.engine.Key.hashCode(Key.java:51)
   at java.util.HashMap.get(HashMap.java(Compiled Code))
   at net.sf.hibernate.impl.SessionImpl.getEntity(SessionImpl.java:655)
   at net.sf.hibernate.loader.Loader.getRow(Loader.java:420)
   at net.sf.hibernate.loader.Loader.doQuery(Loader.java:209)
   at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
   at net.sf.hibernate.loader.Loader.doList(Loader.java:950)
   at net.sf.hibernate.loader.Loader.list(Loader.java:941)
   at net.sf.hibernate.hql.QueryTranslator.list(QueryTranslator.java:834)
   at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1512)
   at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1491)
   at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1483)
   at com.landg.clex.test.hibernate.Tia00573Test.getAllRows(Tia00573Test.java:118)
   at com.landg.clex.test.hibernate.Tia00573Test.main(Tia00573Test.java:46)
Caused by:
java.lang.IllegalArgumentException: object is not an instance of declaring class
   at java.lang.reflect.Method.invoke(Native Method)
   at net.sf.hibernate.property.BasicPropertyAccessor$BasicGetter.get(BasicPropertyAccessor.java:96)
   ... 49 more


Note: hibernate.cglib.use_reflection_optimizer=false
Note: No native types are used as Middlegen is run with the Hibernate types plugin.

The code generating the query is a simple from query...
Code:
public List getAllRows() throws HibernateException {
    log.debug("Entered Tia00573Test.getAllRows()");

    Session session = null;
   Transaction tran = null;
    String query = "from com.landg.clex.hibernate.Tia00573 as tia00573";
    List rows = null;

    try {
        session = HibernateUtil.currentSession();
      tran = session.beginTransaction();
      rows = session.find(query);
    }
    catch (HibernateException e) {
      tran.rollback();
        log.error("HibernateException caught ", e);
        throw new RuntimeException("HibernateException caught: " + e);
    }
    finally {
       tran.commit();
        HibernateUtil.closeSession();
    }
    return rows;
}



Tia00573 has a composite key based on the primary key of Tia00571, which is itself made up of primary keys on Tia00569 and Tia00570.

The mapping files for the relevant tables are as follows...
Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping package="com.myapp.hibernate">
   <!--
      Created by the Middlegen Hibernate plugin
      
      http://boss.bekk.no/boss/middlegen/
      http://hibernate.sourceforge.net/
   -->

   <class name="Tia00569" table="TIA00569" schema="COMMON" proxy="Tia00569">

      <id name="cntrId" type="java.lang.String" column="CNTR_ID">
         <generator class="assigned" />
      </id>

      <property name="cntrbrodBsnsCtgy" type="java.lang.String" column="CNTRBROD_BSNS_CTGY" length="1" />
      <!-- ...other properties removed for clarity purposes -->
      <property name="maintUserId" type="java.lang.String" column="MAINT_USER_ID" not-null="true" length="7" />

      <!-- associations -->
      <!-- bi-directional one-to-many association to Tia00571 -->
      <set name="tia00571s" lazy="true" inverse="true">
         <key>
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00571" />
      </set>
      <!-- bi-directional one-to-many association to Tia00589 -->
      <set name="tia00589s" lazy="true" inverse="true">
         <key>
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00589" />
      </set>
      <!-- bi-directional one-to-many association to Tia00552 -->
      <set name="tia00552s" lazy="true" inverse="true">
         <key>
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00552" />
      </set>

   </class>
</hibernate-mapping>

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping package="com.myapp.hibernate">
   <!--
      Created by the Middlegen Hibernate plugin
      
      http://boss.bekk.no/boss/middlegen/
      http://hibernate.sourceforge.net/
   -->

   <class name="Tia00570" table="TIA00570" schema="CLEX" proxy="Tia00570">

      <id name="claimCaseNumber" type="java.lang.Integer" column="CLAIM_CASE_NUMBER">
         <generator class="assigned" />
      </id>

      <property name="claimType" type="java.lang.String" column="CLAIM_TYPE" not-null="true" length="2" />
      <!-- ...other properties removed for clarity purposes -->
      <property name="maintUserId" type="java.lang.String" column="MAINT_USER_ID" not-null="true" length="7" />

      <!-- associations -->
      <!-- bi-directional one-to-many association to Tia00602 -->
      <set name="tia00602s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00602" />
      </set>
      <!-- bi-directional one-to-many association to Tia00590 -->
      <set name="tia00590s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00590" />
      </set>
      <!-- bi-directional one-to-many association to Tia00591 -->
      <set name="tia00591s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00591" />
      </set>
      <!-- bi-directional one-to-many association to Tia00584 -->
      <set name="tia00584s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00584" />
      </set>
      <!-- bi-directional one-to-many association to Tia00571 -->
      <set name="tia00571s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00571" />
      </set>
      <!-- bi-directional one-to-many association to Tia00597 -->
      <set name="tia00597s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00597" />
      </set>
      <!-- bi-directional one-to-many association to Tia00586 -->
      <set name="tia00586s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
         </key>
         <one-to-many class="Tia00586" />
      </set>

   </class>
</hibernate-mapping>

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping package="com.myapp.hibernate">
   <!--
      Created by the Middlegen Hibernate plugin
      
      http://boss.bekk.no/boss/middlegen/
      http://hibernate.sourceforge.net/
   -->

   <class name="Tia00571" table="TIA00571" schema="CLEX" proxy="Tia00571">

      <composite-id name="comp_id" class="Tia00571PK">
         <!-- bi-directional many-to-one association to Tia00570 -->
         <key-many-to-one name="tia00570" class="Tia00570">
            <column name="CLAIM_CASE_NUMBER" />
         </key-many-to-one>
         <!-- bi-directional many-to-one association to Tia00569 -->
         <key-many-to-one name="tia00569" class="Tia00569">
            <column name="CNTR_ID" />
         </key-many-to-one>
      </composite-id>

      <property name="titleType" type="java.lang.String" column="TITLE_TYPE" length="1" />
      <!-- ...other properties removed for clarity purposes -->
      <property name="maintUserId" type="java.lang.String" column="MAINT_USER_ID" not-null="true" length="7" />

      <!-- associations -->
      <!-- bi-directional one-to-many association to Tia00596 -->
      <set name="tia00596s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00596" />
      </set>
      <!-- bi-directional one-to-many association to Tia00582 -->
      <set name="tia00582s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00582" />
      </set>
      <!-- bi-directional one-to-one association to Tia00573 -->
      <one-to-one name="tia00573" class="Tia00573" outer-join="auto" />
      <!-- bi-directional one-to-many association to Tia00572 -->
      <set name="tia00572s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00572" />
      </set>
      <!-- bi-directional one-to-many association to Tia00579 -->
      <set name="tia00579s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00579" />
      </set>
      <!-- bi-directional one-to-many association to Tia00595 -->
      <set name="tia00595s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00595" />
      </set>
      <!-- bi-directional one-to-many association to Tia00592 -->
      <set name="tia00592s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00592" />
      </set>
      <!-- bi-directional one-to-one association to Tia00574 -->
      <one-to-one name="tia00574" class="Tia00574" outer-join="auto" />

   </class>
</hibernate-mapping>

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping package="com.myapp.hibernate">
   <!--
      Created by the Middlegen Hibernate plugin
      
      http://boss.bekk.no/boss/middlegen/
      http://hibernate.sourceforge.net/
   -->

   <class name="Tia00573" table="TIA00573" schema="CLEX" proxy="Tia00573">

      <composite-id name="comp_id" class="Tia00573PK">
         <!-- bi-directional one-to-one association to Tia00571 -->
         <key-many-to-one name="tia00571" class="Tia00571">
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key-many-to-one>
      </composite-id>

      <property name="leadContractId" type="java.lang.String" column="LEAD_CONTRACT_ID" not-null="true" length="10" />
      <!-- ...other properties removed for clarity purposes -->
      <property name="maintUserId" type="java.lang.String" column="MAINT_USER_ID" not-null="true" length="7" />

      <!-- associations -->
      <!-- bi-directional one-to-one association to Tia00571 -->
      <one-to-one name="tia00571" class="Tia00571" outer-join="auto" constrained="true" />
      <!-- bi-directional one-to-many association to Tia00575 -->
      <set name="tia00575s" lazy="true" inverse="true">
         <key>
            <column name="CLAIM_CASE_NUMBER" />
            <column name="CNTR_ID" />
         </key>
         <one-to-many class="Tia00575" />
      </set>

   </class>
</hibernate-mapping>


When I stop the code in the debugger at the moment the IllegalArgumentException is detected...
Code:
public static final class BasicGetter implements Getter {
   private Class clazz;
   private final Method method;
   private final String propertyName;
      
   ...Constructor goes here
      
   public Object get(Object target) throws HibernateException {
      try {
        [B]return method.invoke(target, null);[/B]
      }
      catch (InvocationTargetException ite) {...}
      catch (IllegalAccessException iae) {...}
      catch (IllegalArgumentException iae) {...}
   }

   ...other methods
}


...the values in the debugger are as follows...
clazz=class com.landg.clex.hibernate.Tia00573PK
[B]method=
public com.landg.clex.hibernate.Tia00571 com.landg.clex.hibernate.Tia00573PK.getTia00571()
propertyName=tia00571
target=com.landg.clex.hibernate.Tia00571PK@7df84b18[tia00570=com.landg.clex.hibernate.Tia00570@4fb60b18[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@3e30cb18[cntrId=UK52308103]]

It looks as though it is expecting an object of type Tia00571, but is actually getting a Tia00571PK instead.

The Hibernate debug log is as follows...
[code]
10:21:15,844 INFO - Entered Tia00573Test.countRows()
10:21:15,875 INFO - Hibernate 2.1.2
10:21:15,875 INFO - loaded properties from resource hibernate.properties: {hibernate.cglib.use_reflection_optimizer=false}
10:21:15,875 INFO - JVM does not support Statement.getGeneratedKeys()
10:21:15,875 INFO - JVM does not support LinkedHasMap, LinkedHashSet - ordered maps and sets disabled
10:21:15,875 INFO - using workaround for JVM bug in java.sql.Timestamp
10:21:15,891 INFO - configuring from resource: /hibernate.cfg.xml
10:21:15,891 INFO - Configuration resource: /hibernate.cfg.xml
10:21:16,203 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd in classpath under net/sf/hibernate/
10:21:16,203 DEBUG - found http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd in classpath
10:21:16,516 DEBUG - connection.datasource=jdbc/clex/CLEX_DS
10:21:16,516 DEBUG - dialect=net.sf.hibernate.dialect.DB2Dialect
10:21:16,516 DEBUG - show_sql=true
10:21:16,516 DEBUG - use_outer_join=false
10:21:16,516 DEBUG - transaction.manager_lookup_class=net.sf.hibernate.transaction.WebSphereTransactionManagerLookup
10:21:16,516 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73e78cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tclcslck.hbm.xml"]
10:21:16,516 INFO - Mapping resource: com/landg/clex/hibernate/Tclcslck.hbm.xml
10:21:16,531 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:16,531 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:16,844 INFO - Mapping class: com.landg.clex.hibernate.Tclcslck -> TCLCSLCK
10:21:16,922 DEBUG - Mapped property: claimCaseNumber -> CLAIM_CASE_NUMBER, type: integer
10:21:16,938 DEBUG - Mapped property: userId -> USER_ID, type: string
10:21:16,938 DEBUG - Mapped property: name -> NAME, type: string
10:21:16,969 DEBUG - Mapped property: lockTimestamp -> LOCK_TIMESTAMP, type: timestamp
10:21:16,969 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73ef8cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tclmqcor.hbm.xml"]
10:21:16,969 INFO - Mapping resource: com/landg/clex/hibernate/Tclmqcor.hbm.xml
10:21:16,969 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:16,969 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:17,203 INFO - Mapping class: com.landg.clex.hibernate.Tclmqcor -> TCLMQCOR
10:21:17,203 DEBUG - Mapped property: corrid -> CORRID, type: long
10:21:17,203 DEBUG - Mapped property: sendcomp -> SENDCOMP, type: string
10:21:17,203 DEBUG - Mapped property: commstype -> COMMSTYPE, type: string
10:21:17,203 DEBUG - Mapped property: messageBody -> MESSAGE_BODY, type: string
10:21:17,203 DEBUG - Mapped property: action -> ACTION, type: integer
10:21:17,203 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73f5ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tclmqprp.hbm.xml"]
10:21:17,203 INFO - Mapping resource: com/landg/clex/hibernate/Tclmqprp.hbm.xml
10:21:17,203 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:17,203 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:17,750 INFO - Mapping class: com.landg.clex.hibernate.Tclmqprp -> TCLMQPRP
10:21:17,750 DEBUG - Mapped property: systemProxy -> SYSTEM_PROXY, type: string
10:21:17,750 DEBUG - Mapped property: commMethod -> COMM_METHOD, type: string
10:21:17,984 DEBUG - Mapped property: comp_id -> SYSTEM_PROXY, COMM_METHOD, type: com.landg.clex.hibernate.TclmqprpPK
10:21:17,984 DEBUG - Mapped property: maxWaitTimeSecs -> MAX_WAIT_TIME_SECS, type: short
10:21:17,984 DEBUG - Mapped property: sendQueue -> SEND_QUEUE, type: string
10:21:17,984 DEBUG - Mapped property: replyQueue -> REPLY_QUEUE, type: string
10:21:17,984 DEBUG - Mapped property: queueConnFactory -> QUEUE_CONN_FACTORY, type: string
10:21:17,984 DEBUG - Mapped property: undelivAction -> UNDELIV_ACTION, type: string
10:21:17,984 DEBUG - Mapped property: errorQueue -> ERROR_QUEUE, type: string
10:21:17,984 DEBUG - Mapped property: targetApplicn -> TARGET_APPLICN, type: string
10:21:17,984 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73f00cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tclmquns.hbm.xml"]
10:21:17,984 INFO - Mapping resource: com/landg/clex/hibernate/Tclmquns.hbm.xml
10:21:17,984 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:17,984 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:18,016 INFO - Mapping class: com.landg.clex.hibernate.Tclmquns -> TCLMQUNS
10:21:18,016 DEBUG - Mapped property: msgId -> MSG_ID, type: long
10:21:18,031 DEBUG - Mapped property: msgTimestamp -> MSG_TIMESTAMP, type: timestamp
10:21:18,031 DEBUG - Mapped property: sendQueue -> SEND_QUEUE, type: string
10:21:18,031 DEBUG - Mapped property: queueConnFactory -> QUEUE_CONN_FACTORY, type: string
10:21:18,031 DEBUG - Mapped property: lghSrceAppn -> LGH_SRCE_APPN, type: string
10:21:18,031 DEBUG - Mapped property: lghTrgtAppn -> LGH_TRGT_APPN, type: string
10:21:18,031 DEBUG - Mapped property: lghUndelAction -> LGH_UNDEL_ACTION, type: string
10:21:18,031 DEBUG - Mapped property: lghErrorQueue -> LGH_ERROR_QUEUE, type: string
10:21:18,031 DEBUG - Mapped property: messageBody -> MESSAGE_BODY, type: string
10:21:18,031 DEBUG - Mapped property: bytesMessage -> BYTES_MESSAGE, type: blob
10:21:18,031 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73fe4cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tclrevws.hbm.xml"]
10:21:18,031 INFO - Mapping resource: com/landg/clex/hibernate/Tclrevws.hbm.xml
10:21:18,031 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:18,031 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:18,094 INFO - Mapping class: com.landg.clex.hibernate.Tclrevws -> TCLREVWS
10:21:18,094 DEBUG - Mapped property: eventId -> EVENT_ID, type: long
10:21:18,094 DEBUG - Mapped property: claimCaseNumber -> CLAIM_CASE_NUMBER, type: integer
10:21:18,094 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:18,094 DEBUG - Mapped property: eventDate -> EVENT_DATE, type: date
10:21:18,094 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:18,094 DEBUG - Mapped property: cntrRoleType -> CNTR_ROLE_TYPE, type: string
10:21:18,094 DEBUG - Mapped property: responseAction -> RESPONSE_ACTION, type: string
10:21:18,094 DEBUG - Mapped property: eventType -> EVENT_TYPE, type: string
10:21:18,094 DEBUG - Mapped property: docType -> DOC_TYPE, type: string
10:21:18,094 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73048cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00478.hbm.xml"]
10:21:18,094 INFO - Mapping resource: com/landg/clex/hibernate/Tia00478.hbm.xml
10:21:18,094 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:18,094 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:18,359 INFO - Mapping class: com.landg.clex.hibernate.Tia00478 -> TIA00478
10:21:18,359 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:18,359 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:18,359 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:18,359 DEBUG - Mapped property: custCtgy -> CUST_CTGY, type: string
10:21:18,359 DEBUG - Mapped property: vatRgstnNmbr -> VAT_RGSTN_NMBR, type: string
10:21:18,359 DEBUG - Mapped property: taxDstrct -> TAX_DSTRCT, type: string
10:21:18,359 DEBUG - Mapped property: ukTaxRef -> UK_TAX_REF, type: string
10:21:18,359 DEBUG - Mapped property: prtyHldOnMfInd -> PRTY_HLD_ON_MF_IND, type: string
10:21:18,359 DEBUG - Mapped property: claimsCommMethod -> CLAIMS_COMM_METHOD, type: string
10:21:18,359 DEBUG - Mapped property: claimsCommText -> CLAIMS_COMM_TEXT, type: string
10:21:18,359 DEBUG - Mapped property: addrSourceType -> ADDR_SOURCE_TYPE, type: string
10:21:18,359 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:18,375 DEBUG - Mapped property: tia00480, type: com.landg.clex.hibernate.Tia00480
10:21:18,375 DEBUG - Mapped property: tia00479, type: com.landg.clex.hibernate.Tia00479
10:21:18,406 DEBUG - Mapped property: tia00577sByFrstPrtyId, type: java.util.Set
10:21:18,406 DEBUG - Mapped property: tia00577sByScndPrtyId, type: java.util.Set
10:21:18,406 DEBUG - Mapped property: tia00580s, type: java.util.Set
10:21:18,406 DEBUG - Mapped property: tia00597s, type: java.util.Set
10:21:18,406 DEBUG - Mapped property: tia00586s, type: java.util.Set
10:21:18,406 DEBUG - Mapped property: tia00552s, type: java.util.Set
10:21:18,406 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@730fccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00479.hbm.xml"]
10:21:18,406 INFO - Mapping resource: com/landg/clex/hibernate/Tia00479.hbm.xml
10:21:18,422 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:18,422 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:19,141 INFO - Mapping class: com.landg.clex.hibernate.Tia00479 -> TIA00479
10:21:19,141 DEBUG - Mapped property: persId -> PERS_ID, type: string
10:21:19,141 DEBUG - Mapped property: persSrnm -> PERS_SRNM, type: string
10:21:19,141 DEBUG - Mapped property: persSrnmUppr -> PERS_SRNM_UPPR, type: string
10:21:19,141 DEBUG - Mapped property: persFrstInit -> PERS_FRST_INIT, type: string
10:21:19,141 DEBUG - Mapped property: persScndInit -> PERS_SCND_INIT, type: string
10:21:19,141 DEBUG - Mapped property: persThrdInit -> PERS_THRD_INIT, type: string
10:21:19,141 DEBUG - Mapped property: persBrthDate -> PERS_BRTH_DATE, type: date
10:21:19,141 DEBUG - Mapped property: persSex -> PERS_SEX, type: string
10:21:19,141 DEBUG - Mapped property: persTitl -> PERS_TITL, type: string
10:21:19,141 DEBUG - Mapped property: persFrstFrnm -> PERS_FRST_FRNM, type: string
10:21:19,141 DEBUG - Mapped property: persScndFrnm -> PERS_SCND_FRNM, type: string
10:21:19,141 DEBUG - Mapped property: persThrdFrnm -> PERS_THRD_FRNM, type: string
10:21:19,141 DEBUG - Mapped property: persAgeAdmtInd -> PERS_AGE_ADMT_IND, type: string
10:21:19,141 DEBUG - Mapped property: persLifeSqncNo -> PERS_LIFE_SQNC_NO, type: string
10:21:19,141 DEBUG - Mapped property: persDpaWavrInd -> PERS_DPA_WAVR_IND, type: string
10:21:19,141 DEBUG - Mapped property: persOptcLckgNo -> PERS_OPTC_LCKG_NO, type: short
10:21:19,141 DEBUG - Mapped property: mrktgAtudTypeId -> MRKTG_ATUD_TYPE_ID, type: string
10:21:19,141 DEBUG - Mapped property: dthDateVrfydInd -> DTH_DATE_VRFYD_IND, type: string
10:21:19,141 DEBUG - Mapped property: deathDate -> DEATH_DATE, type: date
10:21:19,141 DEBUG - Mapped property: mrtlSttsType -> MRTL_STTS_TYPE, type: string
10:21:19,141 DEBUG - Mapped property: smokerType -> SMOKER_TYPE, type: string
10:21:19,141 DEBUG - Mapped property: persDtlVrfydInd -> PERS_DTL_VRFYD_IND, type: string
10:21:19,141 DEBUG - Mapped property: ntnlInsrnNmbr -> NTNL_INSRN_NMBR, type: string
10:21:19,141 DEBUG - Mapped property: dthDateVrfydDte -> DTH_DATE_VRFYD_DTE, type: date
10:21:19,141 DEBUG - Mapped property: dthNtfydDate -> DTH_NTFYD_DATE, type: date
10:21:19,141 DEBUG - Mapped property: bnkrpyStartDate -> BNKRPY_START_DATE, type: date
10:21:19,141 DEBUG - Mapped property: bnkrpyEndDate -> BNKRPY_END_DATE, type: date
10:21:19,141 DEBUG - Mapped property: srvcgAtudType -> SRVCG_ATUD_TYPE, type: string
10:21:19,141 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:19,141 DEBUG - Mapped property: tia00478, type: com.landg.clex.hibernate.Tia00478
10:21:19,141 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@730a0cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00480.hbm.xml"]
10:21:19,141 INFO - Mapping resource: com/landg/clex/hibernate/Tia00480.hbm.xml
10:21:19,141 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:19,141 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:19,719 INFO - Mapping class: com.landg.clex.hibernate.Tia00480 -> TIA00480
10:21:19,719 DEBUG - Mapped property: orgnId -> ORGN_ID, type: string
10:21:19,719 DEBUG - Mapped property: coRegNo -> CO_REG_NO, type: string
10:21:19,719 DEBUG - Mapped property: abbvdRgstdName -> ABBVD_RGSTD_NAME, type: string
10:21:19,719 DEBUG - Mapped property: incrpnType -> INCRPN_TYPE, type: string
10:21:19,719 DEBUG - Mapped property: prinBsnsClsf -> PRIN_BSNS_CLSF, type: string
10:21:19,719 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:19,719 DEBUG - Mapped property: fnclSttsCode -> FNCL_STTS_CODE, type: string
10:21:19,719 DEBUG - Mapped property: wrkfrcTotl -> WRKFRC_TOTL, type: integer
10:21:19,719 DEBUG - Mapped property: rgstdName -> RGSTD_NAME, type: string
10:21:19,719 DEBUG - Mapped property: ctbnRef -> CTBN_REF, type: string
10:21:19,719 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:19,719 DEBUG - Mapped property: tia00478, type: com.landg.clex.hibernate.Tia00478
10:21:19,719 DEBUG - Mapped property: tia00583s, type: java.util.Set
10:21:19,719 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73104cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00487.hbm.xml"]
10:21:19,719 INFO - Mapping resource: com/landg/clex/hibernate/Tia00487.hbm.xml
10:21:19,719 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:19,719 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:19,781 INFO - Mapping class: com.landg.clex.hibernate.Tia00487 -> TIA00487
10:21:19,781 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:19,781 DEBUG - Mapped property: ocrcNmbr -> OCRC_NMBR, type: short
10:21:19,797 DEBUG - Mapped property: comp_id -> PRTY_ID, OCRC_NMBR, type: com.landg.clex.hibernate.Tia00487PK
10:21:19,797 DEBUG - Mapped property: cntcMthd -> CNTC_MTHD, type: string
10:21:19,797 DEBUG - Mapped property: cntcNo -> CNTC_NO, type: string
10:21:19,797 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:19,797 DEBUG - Mapped property: verifiedDate -> VERIFIED_DATE, type: date
10:21:19,797 DEBUG - Mapped property: verificationType -> VERIFICATION_TYPE, type: string
10:21:19,797 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:19,797 DEBUG - Mapped property: tia00488 -> ADDR_ID, type: com.landg.clex.hibernate.Tia00488
10:21:19,797 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@731e8cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00488.hbm.xml"]
10:21:19,797 INFO - Mapping resource: com/landg/clex/hibernate/Tia00488.hbm.xml
10:21:19,812 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:19,812 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:19,844 INFO - Mapping class: com.landg.clex.hibernate.Tia00488 -> TIA00488
10:21:19,859 DEBUG - Mapped property: addrId -> ADDR_ID, type: string
10:21:19,859 DEBUG - Mapped property: addrL1 -> ADDR_L1, type: string
10:21:19,859 DEBUG - Mapped property: addrL2 -> ADDR_L2, type: string
10:21:19,859 DEBUG - Mapped property: addrL3 -> ADDR_L3, type: string
10:21:19,859 DEBUG - Mapped property: addrL4 -> ADDR_L4, type: string
10:21:19,859 DEBUG - Mapped property: addrUkInd -> ADDR_UK_IND, type: string
10:21:19,859 DEBUG - Mapped property: addrUkPcde -> ADDR_UK_PCDE, type: string
10:21:19,859 DEBUG - Mapped property: addrOptcLckgNo -> ADDR_OPTC_LCKG_NO, type: short
10:21:19,859 DEBUG - Mapped property: dlvyPntSfx -> DLVY_PNT_SFX, type: string
10:21:19,859 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:19,859 DEBUG - Mapped property: tia00489s, type: java.util.Set
10:21:19,859 DEBUG - Mapped property: tia00487s, type: java.util.Set
10:21:19,859 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@7324ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00489.hbm.xml"]
10:21:19,859 INFO - Mapping resource: com/landg/clex/hibernate/Tia00489.hbm.xml
10:21:19,859 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:19,859 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,094 INFO - Mapping class: com.landg.clex.hibernate.Tia00489 -> TIA00489
10:21:20,094 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:20,094 DEBUG - Mapped property: tia00488 -> ADDR_ID, type: com.landg.clex.hibernate.Tia00488
10:21:20,094 DEBUG - Mapped property: comp_id -> PRTY_ID, ADDR_ID, type: com.landg.clex.hibernate.Tia00489PK
10:21:20,094 DEBUG - Mapped property: addrType -> ADDR_TYPE, type: string
10:21:20,094 DEBUG - Mapped property: addrSttsType -> ADDR_STTS_TYPE, type: string
10:21:20,094 DEBUG - Mapped property: appcDate -> APPC_DATE, type: date
10:21:20,094 DEBUG - Mapped property: peCuAdOpLckNo -> PE_CU_AD_OP_LCK_NO, type: short
10:21:20,094 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:20,094 DEBUG - Mapped property: cntcMlngName -> CNTC_MLNG_NAME, type: string
10:21:20,094 DEBUG - Mapped property: cntcPosnLtrl -> CNTC_POSN_LTRL, type: string
10:21:20,094 DEBUG - Mapped property: privCnfdlInd -> PRIV_CNFDL_IND, type: string
10:21:20,094 DEBUG - Mapped property: rcntRef -> RCNT_REF, type: string
10:21:20,094 DEBUG - Mapped property: cntcSltnName -> CNTC_SLTN_NAME, type: string
10:21:20,094 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,094 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73230cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00547.hbm.xml"]
10:21:20,094 INFO - Mapping resource: com/landg/clex/hibernate/Tia00547.hbm.xml
10:21:20,094 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,094 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,141 INFO - Mapping class: com.landg.clex.hibernate.Tia00547 -> TIA00547
10:21:20,141 DEBUG - Mapped property: cntcId -> CNTC_ID, type: integer
10:21:20,141 DEBUG - Mapped property: cntcCaseId -> CNTC_CASE_ID, type: integer
10:21:20,141 DEBUG - Mapped property: cntcType -> CNTC_TYPE, type: string
10:21:20,141 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:20,141 DEBUG - Mapped property: recordedDate -> RECORDED_DATE, type: date
10:21:20,141 DEBUG - Mapped property: recordedTime -> RECORDED_TIME, type: time
10:21:20,141 DEBUG - Mapped property: lockNumber -> LOCK_NUMBER, type: short
10:21:20,141 DEBUG - Mapped property: cntcFlreType -> CNTC_FLRE_TYPE, type: string
10:21:20,141 DEBUG - Mapped property: actContactDate -> ACT_CONTACT_DATE, type: date
10:21:20,141 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:20,141 DEBUG - Mapped property: prtyHldOnMfInd -> PRTY_HLD_ON_MF_IND, type: string
10:21:20,141 DEBUG - Mapped property: commMetdType -> COMM_METD_TYPE, type: string
10:21:20,141 DEBUG - Mapped property: cntcLttrType -> CNTC_LTTR_TYPE, type: string
10:21:20,141 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,141 DEBUG - Mapped property: tia00548s, type: java.util.Set
10:21:20,141 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73294cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00548.hbm.xml"]
10:21:20,141 INFO - Mapping resource: com/landg/clex/hibernate/Tia00548.hbm.xml
10:21:20,141 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,141 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,172 INFO - Mapping class: com.landg.clex.hibernate.Tia00548 -> TIA00548
10:21:20,172 DEBUG - Mapped property: cntcReasType -> CNTC_REAS_TYPE, type: string
10:21:20,172 DEBUG - Mapped property: tia00547 -> CNTC_ID, type: com.landg.clex.hibernate.Tia00547
10:21:20,188 DEBUG - Mapped property: comp_id -> CNTC_REAS_TYPE, CNTC_ID, type: com.landg.clex.hibernate.Tia00548PK
10:21:20,188 DEBUG - Mapped property: cntcAtudType -> CNTC_ATUD_TYPE, type: string
10:21:20,188 DEBUG - Mapped property: lockNumber -> LOCK_NUMBER, type: short
10:21:20,188 DEBUG - Mapped property: text -> TEXT, type: string
10:21:20,188 DEBUG - Mapped property: phonCntcSuccInd -> PHON_CNTC_SUCC_IND, type: string
10:21:20,188 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,188 DEBUG - Mapped property: tia00590s, type: java.util.Set
10:21:20,188 DEBUG - Mapped property: tia00588s, type: java.util.Set
10:21:20,188 DEBUG - Mapped property: tia00591s, type: java.util.Set
10:21:20,188 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73330cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00550.hbm.xml"]
10:21:20,188 INFO - Mapping resource: com/landg/clex/hibernate/Tia00550.hbm.xml
10:21:20,203 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,203 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,219 INFO - Mapping class: com.landg.clex.hibernate.Tia00550 -> TIA00550
10:21:20,219 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:20,219 DEBUG - Mapped property: ocrcNmbr -> OCRC_NMBR, type: short
10:21:20,234 DEBUG - Mapped property: comp_id -> PRTY_ID, OCRC_NMBR, type: com.landg.clex.hibernate.Tia00550PK
10:21:20,234 DEBUG - Mapped property: emailAddrType -> EMAIL_ADDR_TYPE, type: string
10:21:20,234 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:20,234 DEBUG - Mapped property: verifiedDate -> VERIFIED_DATE, type: date
10:21:20,234 DEBUG - Mapped property: verificationType -> VERIFICATION_TYPE, type: string
10:21:20,234 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:20,234 DEBUG - Mapped property: emailAddrLower -> EMAIL_ADDR_LOWER, type: string
10:21:20,234 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,234 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73394cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00551.hbm.xml"]
10:21:20,234 INFO - Mapping resource: com/landg/clex/hibernate/Tia00551.hbm.xml
10:21:20,234 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,234 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,250 INFO - Mapping class: com.landg.clex.hibernate.Tia00551 -> TIA00551
10:21:20,250 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:20,250 DEBUG - Mapped property: applicationType -> APPLICATION_TYPE, type: string
10:21:20,266 DEBUG - Mapped property: comp_id -> PRTY_ID, APPLICATION_TYPE, type: com.landg.clex.hibernate.Tia00551PK
10:21:20,266 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,266 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73478cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00552.hbm.xml"]
10:21:20,266 INFO - Mapping resource: com/landg/clex/hibernate/Tia00552.hbm.xml
10:21:20,281 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,281 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,375 INFO - Mapping class: com.landg.clex.hibernate.Tia00552 -> TIA00552
10:21:20,375 DEBUG - Mapped property: cntrRoleType -> CNTR_ROLE_TYPE, type: string
10:21:20,375 DEBUG - Mapped property: tia00478 -> PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:20,375 DEBUG - Mapped property: tia00569 -> CNTR_ID, type: com.landg.clex.hibernate.Tia00569
10:21:20,391 DEBUG - Mapped property: comp_id -> CNTR_ROLE_TYPE, PRTY_ID, CNTR_ID, type: com.landg.clex.hibernate.Tia00552PK
10:21:20,391 DEBUG - Mapped property: uwtgvalnRtngType -> UWTGVALN_RTNG_TYPE, type: string
10:21:20,391 DEBUG - Mapped property: uwtgEvdcDcsn -> UWTG_EVDC_DCSN, type: string
10:21:20,391 DEBUG - Mapped property: uwtgmortRtngType -> UWTGMORT_RTNG_TYPE, type: string
10:21:20,391 DEBUG - Mapped property: uwtgpremRtngType -> UWTGPREM_RTNG_TYPE, type: string
10:21:20,391 DEBUG - Mapped property: uwtgSmryType -> UWTG_SMRY_TYPE, type: string
10:21:20,391 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:20,391 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:20,391 DEBUG - Mapped property: primCustRoleInd -> PRIM_CUST_ROLE_IND, type: string
10:21:20,391 DEBUG - Mapped property: actlStrtDate -> ACTL_STRT_DATE, type: date
10:21:20,391 DEBUG - Mapped property: actlEndDate -> ACTL_END_DATE, type: date
10:21:20,391 DEBUG - Mapped property: cntrSbtyp -> CNTR_SBTYP, type: string
10:21:20,391 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,391 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@734dccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00569.hbm.xml"]
10:21:20,391 INFO - Mapping resource: com/landg/clex/hibernate/Tia00569.hbm.xml
10:21:20,406 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,406 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,438 INFO - Mapping class: com.landg.clex.hibernate.Tia00569 -> TIA00569
10:21:20,438 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:20,438 DEBUG - Mapped property: cntrbrodBsnsCtgy -> CNTRBROD_BSNS_CTGY, type: string
10:21:20,438 DEBUG - Mapped property: cntruwtgProdCtgy -> CNTRUWTG_PROD_CTGY, type: string
10:21:20,438 DEBUG - Mapped property: incnMnth -> INCN_MNTH, type: string
10:21:20,438 DEBUG - Mapped property: incnYear -> INCN_YEAR, type: string
10:21:20,438 DEBUG - Mapped property: expyYear -> EXPY_YEAR, type: string
10:21:20,438 DEBUG - Mapped property: sumAsrd -> SUM_ASRD, type: big_decimal
10:21:20,438 DEBUG - Mapped property: valnClss -> VALN_CLSS, type: string
10:21:20,438 DEBUG - Mapped property: rsncInd -> RSNC_IND, type: string
10:21:20,438 DEBUG - Mapped property: polStts -> POL_STTS, type: string
10:21:20,438 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:20,438 DEBUG - Mapped property: productType -> PRODUCT_TYPE, type: string
10:21:20,438 DEBUG - Mapped property: schemeNumber -> SCHEME_NUMBER, type: string
10:21:20,438 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,438 DEBUG - Mapped property: tia00571s, type: java.util.Set
10:21:20,438 DEBUG - Mapped property: tia00589s, type: java.util.Set
10:21:20,438 DEBUG - Mapped property: tia00552s, type: java.util.Set
10:21:20,438 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73480cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00570.hbm.xml"]
10:21:20,438 INFO - Mapping resource: com/landg/clex/hibernate/Tia00570.hbm.xml
10:21:20,453 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,453 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,547 INFO - Mapping class: com.landg.clex.hibernate.Tia00570 -> TIA00570
10:21:20,547 DEBUG - Mapped property: claimCaseNumber -> CLAIM_CASE_NUMBER, type: integer
10:21:20,547 DEBUG - Mapped property: claimType -> CLAIM_TYPE, type: string
10:21:20,547 DEBUG - Mapped property: claimCaseStType -> CLAIM_CASE_ST_TYPE, type: string
10:21:20,547 DEBUG - Mapped property: manualInputInd -> MANUAL_INPUT_IND, type: string
10:21:20,547 DEBUG - Mapped property: createTimestamp -> CREATE_TIMESTAMP, type: timestamp
10:21:20,547 DEBUG - Mapped property: salary -> SALARY, type: big_decimal
10:21:20,547 DEBUG - Mapped property: occupationType -> OCCUPATION_TYPE, type: string
10:21:20,547 DEBUG - Mapped property: persId -> PERS_ID, type: string
10:21:20,547 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:20,547 DEBUG - Mapped property: othContractInd -> OTH_CONTRACT_IND, type: string
10:21:20,547 DEBUG - Mapped property: othMatCntrInd -> OTH_MAT_CNTR_IND, type: string
10:21:20,547 DEBUG - Mapped property: clmPackDespdInd -> CLM_PACK_DESPD_IND, type: string
10:21:20,547 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,547 DEBUG - Mapped property: tia00602s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00590s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00591s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00584s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00571s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00597s, type: java.util.Set
10:21:20,547 DEBUG - Mapped property: tia00586s, type: java.util.Set
10:21:20,547 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73564cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00571.hbm.xml"]
10:21:20,547 INFO - Mapping resource: com/landg/clex/hibernate/Tia00571.hbm.xml
10:21:20,562 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,562 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,859 INFO - Mapping class: com.landg.clex.hibernate.Tia00571 -> TIA00571
10:21:20,859 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:20,859 DEBUG - Mapped property: tia00569 -> CNTR_ID, type: com.landg.clex.hibernate.Tia00569
10:21:20,875 DEBUG - Mapped property: comp_id -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571PK
10:21:20,875 DEBUG - Mapped property: titleType -> TITLE_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: frequencyType -> FREQUENCY_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: purchReasonType -> PURCH_REASON_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: occupationType -> OCCUPATION_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: reassurBasisType -> REASSUR_BASIS_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: procurMethodType -> PROCUR_METHOD_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: salesQuoteDate -> SALES_QUOTE_DATE, type: date
10:21:20,875 DEBUG - Mapped property: inceptionDate -> INCEPTION_DATE, type: date
10:21:20,875 DEBUG - Mapped property: effectiveEndDate -> EFFECTIVE_END_DATE, type: date
10:21:20,875 DEBUG - Mapped property: ddDetailPresInd -> DD_DETAIL_PRES_IND, type: string
10:21:20,875 DEBUG - Mapped property: significntAltInd -> SIGNIFICNT_ALT_IND, type: string
10:21:20,875 DEBUG - Mapped property: claimAlreadyInd -> CLAIM_ALREADY_IND, type: string
10:21:20,875 DEBUG - Mapped property: reinstatedInd -> REINSTATED_IND, type: string
10:21:20,875 DEBUG - Mapped property: reinstatementDate -> REINSTATEMENT_DATE, type: date
10:21:20,875 DEBUG - Mapped property: premiumAmount -> PREMIUM_AMOUNT, type: big_decimal
10:21:20,875 DEBUG - Mapped property: indexedInd -> INDEXED_IND, type: string
10:21:20,875 DEBUG - Mapped property: indexationDate -> INDEXATION_DATE, type: date
10:21:20,875 DEBUG - Mapped property: coverExclInd -> COVER_EXCL_IND, type: string
10:21:20,875 DEBUG - Mapped property: cntrSbtyp -> CNTR_SBTYP, type: string
10:21:20,875 DEBUG - Mapped property: legacyMktingName -> LEGACY_MKTING_NAME, type: string
10:21:20,875 DEBUG - Mapped property: contractAge -> CONTRACT_AGE, type: short
10:21:20,875 DEBUG - Mapped property: reasonsForRating -> REASONS_FOR_RATING, type: string
10:21:20,875 DEBUG - Mapped property: createTimestamp -> CREATE_TIMESTAMP, type: timestamp
10:21:20,875 DEBUG - Mapped property: maturityOptType -> MATURITY_OPT_TYPE, type: string
10:21:20,875 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,875 DEBUG - Mapped property: tia00596s, type: java.util.Set
10:21:20,875 DEBUG - Mapped property: tia00582s, type: java.util.Set
10:21:20,891 DEBUG - Mapped property: tia00573, type: com.landg.clex.hibernate.Tia00573
10:21:20,891 DEBUG - Mapped property: tia00572s, type: java.util.Set
10:21:20,906 DEBUG - Mapped property: tia00579s, type: java.util.Set
10:21:20,922 DEBUG - Mapped property: tia00595s, type: java.util.Set
10:21:20,922 DEBUG - Mapped property: tia00592s, type: java.util.Set
10:21:20,922 DEBUG - Mapped property: tia00574, type: com.landg.clex.hibernate.Tia00574
10:21:20,922 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@735c8cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00572.hbm.xml"]
10:21:20,922 INFO - Mapping resource: com/landg/clex/hibernate/Tia00572.hbm.xml
10:21:20,922 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,922 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,953 INFO - Mapping class: com.landg.clex.hibernate.Tia00572 -> TIA00572
10:21:20,953 DEBUG - Mapped property: quoteNumber -> QUOTE_NUMBER, type: integer
10:21:20,953 DEBUG - Mapped property: quoteDate -> QUOTE_DATE, type: date
10:21:20,953 DEBUG - Mapped property: createTimestamp -> CREATE_TIMESTAMP, type: timestamp
10:21:20,953 DEBUG - Mapped property: attachBonusAmt -> ATTACH_BONUS_AMT, type: big_decimal
10:21:20,953 DEBUG - Mapped property: interimBonusAmt -> INTERIM_BONUS_AMT, type: big_decimal
10:21:20,953 DEBUG - Mapped property: terminalBonusAmt -> TERMINAL_BONUS_AMT, type: big_decimal
10:21:20,953 DEBUG - Mapped property: benefitAmt -> BENEFIT_AMT, type: big_decimal
10:21:20,953 DEBUG - Mapped property: quoteValue -> QUOTE_VALUE, type: big_decimal
10:21:20,953 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,953 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:20,953 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@735accb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00573.hbm.xml"]
10:21:20,953 INFO - Mapping resource: com/landg/clex/hibernate/Tia00573.hbm.xml
10:21:20,953 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:20,953 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:20,969 INFO - Mapping class: com.landg.clex.hibernate.Tia00573 -> TIA00573
10:21:20,969 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:20,984 DEBUG - Mapped property: comp_id -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00573PK
10:21:20,984 DEBUG - Mapped property: leadContractId -> LEAD_CONTRACT_ID, type: string
10:21:20,984 DEBUG - Mapped property: prodId -> PROD_ID, type: string
10:21:20,984 DEBUG - Mapped property: productVerType -> PRODUCT_VER_TYPE, type: string
10:21:20,984 DEBUG - Mapped property: ttlExcClosedInd -> TTL_EXC_CLOSED_IND, type: string
10:21:20,984 DEBUG - Mapped property: ttlExcClosedDat -> TTL_EXC_CLOSED_DAT, type: date
10:21:20,984 DEBUG - Mapped property: isaInd -> ISA_IND, type: string
10:21:20,984 DEBUG - Mapped property: targetMatVal -> TARGET_MAT_VAL, type: big_decimal
10:21:20,984 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:20,984 DEBUG - Mapped property: tia00571, type: com.landg.clex.hibernate.Tia00571
10:21:20,984 DEBUG - Mapped property: tia00575s, type: java.util.Set
10:21:20,984 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73610cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00574.hbm.xml"]
10:21:20,984 INFO - Mapping resource: com/landg/clex/hibernate/Tia00574.hbm.xml
10:21:21,000 DEBUG - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,000 DEBUG - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath
10:21:21,047 INFO - Mapping class: com.landg.clex.hibernate.Tia00574 -> TIA00574
10:21:21,047 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:21,062 DEBUG - Mapped property: comp_id -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00574PK
10:21:21,062 DEBUG - Mapped property: surrValAdjmtTyp -> SURR_VAL_ADJMT_TYP, type: string
10:21:21,062 DEBUG - Mapped property: underDebtPrvInd -> UNDER_DEBT_PRV_IND, type: string
10:21:21,062 DEBUG - Mapped property: bonusEntryDate -> BONUS_ENTRY_DATE, type: date
10:21:21,062 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,062 DEBUG - Mapped property: tia00571, type: com.landg.clex.hibernate.Tia00571
10:21:21,062 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@736f4cb0 [Attribute: name resource


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 18, 2004 6:35 am 
Beginner
Beginner

Joined: Mon Nov 24, 2003 12:44 pm
Posts: 40
Looks like my posting was too long, here is the rest...

10:21:21,062 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@736f4cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00575.hbm.xml"]
10:21:21,062 INFO - Mapping resource: com/landg/clex/hibernate/Tia00575.hbm.xml
10:21:21,062 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,062 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,078 INFO - Mapping class: com.landg.clex.hibernate.Tia00575 -> TIA00575
10:21:21,078 DEBUG - Mapped property: ulCntrElid -> UL_CNTR_ELID, type: string
10:21:21,078 DEBUG - Mapped property: ulCntrElstType -> UL_CNTR_ELST_TYPE, type: string
10:21:21,078 DEBUG - Mapped property: maturityOptType -> MATURITY_OPT_TYPE, type: string
10:21:21,078 DEBUG - Mapped property: extensionAllowedInd -> EXTENSION_ALLOWED_IND, type: string
10:21:21,078 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,078 DEBUG - Mapped property: tia00573 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00573
10:21:21,078 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73758cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00577.hbm.xml"]
10:21:21,078 INFO - Mapping resource: com/landg/clex/hibernate/Tia00577.hbm.xml
10:21:21,078 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,078 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,109 INFO - Mapping class: com.landg.clex.hibernate.Tia00577 -> TIA00577
10:21:21,109 DEBUG - Mapped property: relpType -> RELP_TYPE, type: string
10:21:21,109 DEBUG - Mapped property: tia00478ByFrstPrtyId -> FRST_PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:21,109 DEBUG - Mapped property: tia00478ByScndPrtyId -> SCND_PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:21,109 DEBUG - Mapped property: comp_id -> RELP_TYPE, FRST_PRTY_ID, SCND_PRTY_ID, type: com.landg.clex.hibernate.Tia00577PK
10:21:21,109 DEBUG - Mapped property: frstPrtySbtyp -> FRST_PRTY_SBTYP, type: string
10:21:21,109 DEBUG - Mapped property: scndPrtySbtyp -> SCND_PRTY_SBTYP, type: string
10:21:21,109 DEBUG - Mapped property: relpStrtDate -> RELP_STRT_DATE, type: date
10:21:21,109 DEBUG - Mapped property: relpEndDate -> RELP_END_DATE, type: date
10:21:21,109 DEBUG - Mapped property: frstPrtyRef -> FRST_PRTY_REF, type: string
10:21:21,109 DEBUG - Mapped property: frstAutyType -> FRST_AUTY_TYPE, type: string
10:21:21,109 DEBUG - Mapped property: scndAutyType -> SCND_AUTY_TYPE, type: string
10:21:21,109 DEBUG - Mapped property: lockNmbr -> LOCK_NMBR, type: short
10:21:21,109 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,109 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@73794cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00578.hbm.xml"]
10:21:21,109 INFO - Mapping resource: com/landg/clex/hibernate/Tia00578.hbm.xml
10:21:21,125 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,125 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,125 INFO - Mapping class: com.landg.clex.hibernate.Tia00578 -> TIA00578
10:21:21,125 DEBUG - Mapped property: sortCode -> SORT_CODE, type: string
10:21:21,125 DEBUG - Mapped property: accountNumber -> ACCOUNT_NUMBER, type: string
10:21:21,141 DEBUG - Mapped property: comp_id -> SORT_CODE, ACCOUNT_NUMBER, type: com.landg.clex.hibernate.Tia00578PK
10:21:21,141 DEBUG - Mapped property: accountName -> ACCOUNT_NAME, type: string
10:21:21,141 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,141 DEBUG - Mapped property: tia00579s, type: java.util.Set
10:21:21,141 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72878cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00579.hbm.xml"]
10:21:21,141 INFO - Mapping resource: com/landg/clex/hibernate/Tia00579.hbm.xml
10:21:21,156 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,156 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,172 INFO - Mapping class: com.landg.clex.hibernate.Tia00579 -> TIA00579
10:21:21,172 DEBUG - Mapped property: bankAcntUseType -> BANK_ACNT_USE_TYPE, type: string
10:21:21,172 DEBUG - Mapped property: actualStartDate -> ACTUAL_START_DATE, type: date
10:21:21,172 DEBUG - Mapped property: createTimestamp -> CREATE_TIMESTAMP, type: timestamp
10:21:21,172 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:21,172 DEBUG - Mapped property: tia00578 -> SORT_CODE, ACCOUNT_NUMBER, type: com.landg.clex.hibernate.Tia00578
10:21:21,188 DEBUG - Mapped property: comp_id -> BANK_ACNT_USE_TYPE, ACTUAL_START_DATE, CREATE_TIMESTAMP, CLAIM_CASE_NUMBER, CNTR_ID, SORT_CODE, ACCOUNT_NUMBER, type: com.landg.clex.hibernate.Tia00579PK
10:21:21,188 DEBUG - Mapped property: actualEndDate -> ACTUAL_END_DATE, type: date
10:21:21,188 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,188 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72b54cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00580.hbm.xml"]
10:21:21,188 INFO - Mapping resource: com/landg/clex/hibernate/Tia00580.hbm.xml
10:21:21,203 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,203 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,250 INFO - Mapping class: com.landg.clex.hibernate.Tia00580 -> TIA00580
10:21:21,250 DEBUG - Mapped property: slesAgmtId -> SLES_AGMT_ID, type: long
10:21:21,250 DEBUG - Mapped property: slesAgmtName -> SLES_AGMT_NAME, type: string
10:21:21,250 DEBUG - Mapped property: ocrcNmbr -> OCRC_NMBR, type: short
10:21:21,250 DEBUG - Mapped property: persAltnNameId -> PERS_ALTN_NAME_ID, type: integer
10:21:21,250 DEBUG - Mapped property: nameType -> NAME_TYPE, type: string
10:21:21,250 DEBUG - Mapped property: apmtDate -> APMT_DATE, type: date
10:21:21,250 DEBUG - Mapped property: effStts -> EFF_STTS, type: string
10:21:21,250 DEBUG - Mapped property: effPymtStts -> EFF_PYMT_STTS, type: string
10:21:21,250 DEBUG - Mapped property: effSttsDate -> EFF_STTS_DATE, type: date
10:21:21,250 DEBUG - Mapped property: slesAgmtType -> SLES_AGMT_TYPE, type: string
10:21:21,250 DEBUG - Mapped property: distChnlId -> DIST_CHNL_ID, type: string
10:21:21,250 DEBUG - Mapped property: termsSetId -> TERMS_SET_ID, type: long
10:21:21,250 DEBUG - Mapped property: dfltTerms -> DFLT_TERMS, type: big_decimal
10:21:21,250 DEBUG - Mapped property: ctrlgSlesAgmtId -> CTRLG_SLES_AGMT_ID, type: long
10:21:21,250 DEBUG - Mapped property: ctrlgRelpMbrpNm -> CTRLG_RELP_MBRP_NM, type: string
10:21:21,250 DEBUG - Mapped property: saSttsType -> SA_STTS_TYPE, type: string
10:21:21,250 DEBUG - Mapped property: saSttsReasType -> SA_STTS_REAS_TYPE, type: string
10:21:21,250 DEBUG - Mapped property: saPymtSuspnReas -> SA_PYMT_SUSPN_REAS, type: string
10:21:21,250 DEBUG - Mapped property: saSttsDate -> SA_STTS_DATE, type: date
10:21:21,250 DEBUG - Mapped property: supvrPersId -> SUPVR_PERS_ID, type: string
10:21:21,250 DEBUG - Mapped property: supvrOrgnId -> SUPVR_ORGN_ID, type: string
10:21:21,250 DEBUG - Mapped property: supvrApmtDate -> SUPVR_APMT_DATE, type: date
10:21:21,250 DEBUG - Mapped property: mngrPersId -> MNGR_PERS_ID, type: string
10:21:21,266 DEBUG - Mapped property: mngrOrgnId -> MNGR_ORGN_ID, type: string
10:21:21,281 DEBUG - Mapped property: mngrApmtDate -> MNGR_APMT_DATE, type: date
10:21:21,281 DEBUG - Mapped property: mngrNmbr -> MNGR_NMBR, type: string
10:21:21,281 DEBUG - Mapped property: mngrBrnchNmbr -> MNGR_BRNCH_NMBR, type: string
10:21:21,281 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:21,281 DEBUG - Mapped property: cmcnPrefId -> CMCN_PREF_ID, type: long
10:21:21,281 DEBUG - Mapped property: inmtyPrmtd -> INMTY_PRMTD, type: string
10:21:21,281 DEBUG - Mapped property: scrfcPrmtd -> SCRFC_PRMTD, type: string
10:21:21,281 DEBUG - Mapped property: srvcrSlesAcntId -> SRVCR_SLES_ACNT_ID, type: long
10:21:21,281 DEBUG - Mapped property: dfltSlesAcntId -> DFLT_SLES_ACNT_ID, type: long
10:21:21,281 DEBUG - Mapped property: lastUpdatedBy -> LAST_UPDATED_BY, type: string
10:21:21,281 DEBUG - Mapped property: lockNumber -> LOCK_NUMBER, type: short
10:21:21,281 DEBUG - Mapped property: crtnTmstmp -> CRTN_TMSTMP, type: timestamp
10:21:21,281 DEBUG - Mapped property: slesAgmtGrp -> SLES_AGMT_GRP, type: string
10:21:21,281 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,281 DEBUG - Mapped property: tia00581s, type: java.util.Set
10:21:21,281 DEBUG - Mapped property: tia00478 -> PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:21,281 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72b38cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00581.hbm.xml"]
10:21:21,281 INFO - Mapping resource: com/landg/clex/hibernate/Tia00581.hbm.xml
10:21:21,281 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,281 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,312 INFO - Mapping class: com.landg.clex.hibernate.Tia00581 -> TIA00581
10:21:21,312 DEBUG - Mapped property: slesAcntId -> SLES_ACNT_ID, type: long
10:21:21,312 DEBUG - Mapped property: slesAcntName -> SLES_ACNT_NAME, type: string
10:21:21,312 DEBUG - Mapped property: slesAcNmDfrntr -> SLES_AC_NM_DFRNTR, type: string
10:21:21,312 DEBUG - Mapped property: slesAcntNmbr -> SLES_ACNT_NMBR, type: string
10:21:21,312 DEBUG - Mapped property: effectiveEndDate -> EFFECTIVE_END_DATE, type: date
10:21:21,312 DEBUG - Mapped property: effectiveStartDt -> EFFECTIVE_START_DT, type: date
10:21:21,312 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:21,312 DEBUG - Mapped property: prtySbtyp -> PRTY_SBTYP, type: string
10:21:21,312 DEBUG - Mapped property: ctrlgAcntId -> CTRLG_ACNT_ID, type: long
10:21:21,312 DEBUG - Mapped property: slesAcntDspchCo -> SLES_ACNT_DSPCH_CO, type: string
10:21:21,312 DEBUG - Mapped property: cmcnPrefId -> CMCN_PREF_ID, type: long
10:21:21,312 DEBUG - Mapped property: lastUpdatedBy -> LAST_UPDATED_BY, type: string
10:21:21,312 DEBUG - Mapped property: crtnTmstmp -> CRTN_TMSTMP, type: timestamp
10:21:21,312 DEBUG - Mapped property: lockNumber -> LOCK_NUMBER, type: short
10:21:21,312 DEBUG - Mapped property: pswd -> PSWD, type: string
10:21:21,312 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,312 DEBUG - Mapped property: tia00580 -> SLES_AGMT_ID, type: com.landg.clex.hibernate.Tia00580
10:21:21,312 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72b9ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00582.hbm.xml"]
10:21:21,312 INFO - Mapping resource: com/landg/clex/hibernate/Tia00582.hbm.xml
10:21:21,328 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,328 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,344 INFO - Mapping class: com.landg.clex.hibernate.Tia00582 -> TIA00582
10:21:21,344 DEBUG - Mapped property: agencyNumber -> AGENCY_NUMBER, type: string
10:21:21,344 DEBUG - Mapped property: cntrAgcyInvtTyp -> CNTR_AGCY_INVT_TYP, type: string
10:21:21,344 DEBUG - Mapped property: actualStartDate -> ACTUAL_START_DATE, type: date
10:21:21,344 DEBUG - Mapped property: creationTimestamp -> CREATION_TIMESTAMP, type: timestamp
10:21:21,344 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:21,359 DEBUG - Mapped property: comp_id -> AGENCY_NUMBER, CNTR_AGCY_INVT_TYP, ACTUAL_START_DATE, CREATION_TIMESTAMP, CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00582PK
10:21:21,359 DEBUG - Mapped property: persId -> PERS_ID, type: string
10:21:21,359 DEBUG - Mapped property: actualEndDate -> ACTUAL_END_DATE, type: date
10:21:21,359 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,359 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72c40cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00583.hbm.xml"]
10:21:21,359 INFO - Mapping resource: com/landg/clex/hibernate/Tia00583.hbm.xml
10:21:21,359 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,359 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,375 INFO - Mapping class: com.landg.clex.hibernate.Tia00583 -> TIA00583
10:21:21,375 DEBUG - Mapped property: reassAcntNumber -> REASS_ACNT_NUMBER, type: string
10:21:21,375 DEBUG - Mapped property: tia00480 -> ORGN_ID, type: com.landg.clex.hibernate.Tia00480
10:21:21,375 DEBUG - Mapped property: comp_id -> REASS_ACNT_NUMBER, ORGN_ID, type: com.landg.clex.hibernate.Tia00583PK
10:21:21,375 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,375 DEBUG - Mapped property: tia00589s, type: java.util.Set
10:21:21,375 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72c24cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00584.hbm.xml"]
10:21:21,375 INFO - Mapping resource: com/landg/clex/hibernate/Tia00584.hbm.xml
10:21:21,375 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,391 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,391 INFO - Mapping class: com.landg.clex.hibernate.Tia00584 -> TIA00584
10:21:21,391 DEBUG - Mapped property: medicalCondType -> MEDICAL_COND_TYPE, type: string
10:21:21,391 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:21,422 DEBUG - Mapped property: comp_id -> MEDICAL_COND_TYPE, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00584PK
10:21:21,422 DEBUG - Mapped property: medicalCondSubt -> MEDICAL_COND_SUBT, type: string
10:21:21,422 DEBUG - Mapped property: diagnosisDate -> DIAGNOSIS_DATE, type: date
10:21:21,422 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,422 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72c88cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00586.hbm.xml"]
10:21:21,422 INFO - Mapping resource: com/landg/clex/hibernate/Tia00586.hbm.xml
10:21:21,438 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,438 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,438 INFO - Mapping class: com.landg.clex.hibernate.Tia00586 -> TIA00586
10:21:21,438 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:21,438 DEBUG - Mapped property: clmTrackDocType -> CLM_TRACK_DOC_TYPE, type: string
10:21:21,438 DEBUG - Mapped property: cccPrtyRelType -> CCC_PRTY_REL_TYPE, type: string
10:21:21,438 DEBUG - Mapped property: tia00478 -> PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:21,438 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:21,469 DEBUG - Mapped property: comp_id -> CNTR_ID, CLM_TRACK_DOC_TYPE, CCC_PRTY_REL_TYPE, PRTY_ID, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00586PK
10:21:21,469 DEBUG - Mapped property: expctdRespDays -> EXPCTD_RESP_DAYS, type: short
10:21:21,469 DEBUG - Mapped property: firstRequestDate -> FIRST_REQUEST_DATE, type: date
10:21:21,469 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,469 DEBUG - Mapped property: tia00587s, type: java.util.Set
10:21:21,469 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72d6ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00587.hbm.xml"]
10:21:21,469 INFO - Mapping resource: com/landg/clex/hibernate/Tia00587.hbm.xml
10:21:21,484 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,484 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,516 INFO - Mapping class: com.landg.clex.hibernate.Tia00587 -> TIA00587
10:21:21,516 DEBUG - Mapped property: activityTimestamp -> ACTIVITY_TIMESTAMP, type: timestamp
10:21:21,516 DEBUG - Mapped property: tia00586 -> CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, type: com.landg.clex.hibernate.Tia00586
10:21:21,516 DEBUG - Mapped property: comp_id -> ACTIVITY_TIMESTAMP, CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, type: com.landg.clex.hibernate.Tia00587PK
10:21:21,516 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:21,516 DEBUG - Mapped property: clmTrackActType -> CLM_TRACK_ACT_TYPE, type: string
10:21:21,516 DEBUG - Mapped property: clmRespeInvType -> CLM_RESPE_INV_TYPE, type: string
10:21:21,516 DEBUG - Mapped property: effectiveDate -> EFFECTIVE_DATE, type: date
10:21:21,516 DEBUG - Mapped property: expectedRespDate -> EXPECTED_RESP_DATE, type: date
10:21:21,516 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,516 DEBUG - Mapped property: tia00588s, type: java.util.Set
10:21:21,516 DEBUG - Mapped property: tia00617s, type: java.util.Set
10:21:21,516 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72dd0cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00588.hbm.xml"]
10:21:21,516 INFO - Mapping resource: com/landg/clex/hibernate/Tia00588.hbm.xml
10:21:21,516 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,516 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,547 INFO - Mapping class: com.landg.clex.hibernate.Tia00588 -> TIA00588
10:21:21,547 DEBUG - Mapped property: tia00548 -> CNTC_ID, CNTC_REAS_TYPE, type: com.landg.clex.hibernate.Tia00548
10:21:21,547 DEBUG - Mapped property: tia00587 -> CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, type: com.landg.clex.hibernate.Tia00587
10:21:21,547 DEBUG - Mapped property: comp_id -> CNTC_ID, CNTC_REAS_TYPE, CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, type: com.landg.clex.hibernate.Tia00588PK
10:21:21,547 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,547 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72db4cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00589.hbm.xml"]
10:21:21,547 INFO - Mapping resource: com/landg/clex/hibernate/Tia00589.hbm.xml
10:21:21,562 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,562 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,609 INFO - Mapping class: com.landg.clex.hibernate.Tia00589 -> TIA00589
10:21:21,609 DEBUG - Mapped property: tia00583 -> ORGN_ID, REASS_ACNT_NUMBER, type: com.landg.clex.hibernate.Tia00583
10:21:21,609 DEBUG - Mapped property: tia00569 -> CNTR_ID, type: com.landg.clex.hibernate.Tia00569
10:21:21,641 DEBUG - Mapped property: comp_id -> ORGN_ID, REASS_ACNT_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00589PK
10:21:21,641 DEBUG - Mapped property: reassCntrNumber -> REASS_CNTR_NUMBER, type: string
10:21:21,641 DEBUG - Mapped property: reassAmount -> REASS_AMOUNT, type: long
10:21:21,641 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,641 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72e18cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00590.hbm.xml"]
10:21:21,641 INFO - Mapping resource: com/landg/clex/hibernate/Tia00590.hbm.xml
10:21:21,641 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,641 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,688 INFO - Mapping class: com.landg.clex.hibernate.Tia00590 -> TIA00590
10:21:21,688 DEBUG - Mapped property: despCreateTstamp -> DESP_CREATE_TSTAMP, type: timestamp
10:21:21,688 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:21,703 DEBUG - Mapped property: comp_id -> DESP_CREATE_TSTAMP, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00590PK
10:21:21,703 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:21,703 DEBUG - Mapped property: despatchDate -> DESPATCH_DATE, type: date
10:21:21,703 DEBUG - Mapped property: localPrntReqInd -> LOCAL_PRNT_REQ_IND, type: string
10:21:21,703 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,703 DEBUG - Mapped property: tia00548 -> CNTC_ID, CNTC_REAS_TYPE, type: com.landg.clex.hibernate.Tia00548
10:21:21,703 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72efccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00591.hbm.xml"]
10:21:21,703 INFO - Mapping resource: com/landg/clex/hibernate/Tia00591.hbm.xml
10:21:21,766 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,766 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,781 INFO - Mapping class: com.landg.clex.hibernate.Tia00591 -> TIA00591
10:21:21,781 DEBUG - Mapped property: tia00548 -> CNTC_ID, CNTC_REAS_TYPE, type: com.landg.clex.hibernate.Tia00548
10:21:21,781 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:21,781 DEBUG - Mapped property: comp_id -> CNTC_ID, CNTC_REAS_TYPE, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00591PK
10:21:21,781 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,781 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72ea0cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00592.hbm.xml"]
10:21:21,781 INFO - Mapping resource: com/landg/clex/hibernate/Tia00592.hbm.xml
10:21:21,828 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,828 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,859 INFO - Mapping class: com.landg.clex.hibernate.Tia00592 -> TIA00592
10:21:21,859 DEBUG - Mapped property: prtyId -> PRTY_ID, type: string
10:21:21,859 DEBUG - Mapped property: cccPrtyRelType -> CCC_PRTY_REL_TYPE, type: string
10:21:21,859 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:21,906 DEBUG - Mapped property: comp_id -> PRTY_ID, CCC_PRTY_REL_TYPE, CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00592PK
10:21:21,906 DEBUG - Mapped property: persId -> PERS_ID, type: string
10:21:21,906 DEBUG - Mapped property: actualStartDate -> ACTUAL_START_DATE, type: date
10:21:21,906 DEBUG - Mapped property: actualEndDate -> ACTUAL_END_DATE, type: date
10:21:21,906 DEBUG - Mapped property: uwtgEvdcDcsnTyp -> UWTG_EVDC_DCSN_TYP, type: string
10:21:21,906 DEBUG - Mapped property: reference -> REFERENCE, type: string
10:21:21,906 DEBUG - Mapped property: deedOfDischDate -> DEED_OF_DISCH_DATE, type: date
10:21:21,906 DEBUG - Mapped property: signatoryInd -> SIGNATORY_IND, type: string
10:21:21,906 DEBUG - Mapped property: keyContactInd -> KEY_CONTACT_IND, type: string
10:21:21,906 DEBUG - Mapped property: lenderParReqInd -> LENDER_PAR_REQ_IND, type: string
10:21:21,906 DEBUG - Mapped property: faoName -> FAO_NAME, type: string
10:21:21,922 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,922 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72f04cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00593.hbm.xml"]
10:21:21,922 INFO - Mapping resource: com/landg/clex/hibernate/Tia00593.hbm.xml
10:21:21,922 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,922 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,953 INFO - Mapping class: com.landg.clex.hibernate.Tia00593 -> TIA00593
10:21:21,953 DEBUG - Mapped property: medicalCondType -> MEDICAL_COND_TYPE, type: string
10:21:21,953 DEBUG - Mapped property: defnStartDate -> DEFN_START_DATE, type: date
10:21:21,953 DEBUG - Mapped property: comp_id -> MEDICAL_COND_TYPE, DEFN_START_DATE, type: com.landg.clex.hibernate.Tia00593PK
10:21:21,953 DEBUG - Mapped property: text -> TEXT, type: string
10:21:21,953 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,953 DEBUG - Mapped property: tia00594s, type: java.util.Set
10:21:21,953 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@72fe8cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00594.hbm.xml"]
10:21:21,953 INFO - Mapping resource: com/landg/clex/hibernate/Tia00594.hbm.xml
10:21:21,969 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,969 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:21,969 INFO - Mapping class: com.landg.clex.hibernate.Tia00594 -> TIA00594
10:21:21,969 DEBUG - Mapped property: effectStartDate -> EFFECT_START_DATE, type: date
10:21:21,969 DEBUG - Mapped property: creationTimestamp -> CREATION_TIMESTAMP, type: timestamp
10:21:21,969 DEBUG - Mapped property: productType -> PRODUCT_TYPE, type: string
10:21:21,969 DEBUG - Mapped property: tia00593 -> MEDICAL_COND_TYPE, DEFN_START_DATE, type: com.landg.clex.hibernate.Tia00593
10:21:21,984 DEBUG - Mapped property: comp_id -> EFFECT_START_DATE, CREATION_TIMESTAMP, PRODUCT_TYPE, MEDICAL_COND_TYPE, DEFN_START_DATE, type: com.landg.clex.hibernate.Tia00594PK
10:21:21,984 DEBUG - Mapped property: effectEndDate -> EFFECT_END_DATE, type: timestamp
10:21:21,984 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:21,984 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@703c4cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00595.hbm.xml"]
10:21:21,984 INFO - Mapping resource: com/landg/clex/hibernate/Tia00595.hbm.xml
10:21:21,984 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:21,984 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,062 INFO - Mapping class: com.landg.clex.hibernate.Tia00595 -> TIA00595
10:21:22,062 DEBUG - Mapped property: benefitType -> BENEFIT_TYPE, type: string
10:21:22,062 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:22,078 DEBUG - Mapped property: comp_id -> BENEFIT_TYPE, CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00595PK
10:21:22,078 DEBUG - Mapped property: benefitClaimdInd -> BENEFIT_CLAIMD_IND, type: string
10:21:22,078 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,078 DEBUG - Mapped property: tia00598s, type: java.util.Set
10:21:22,078 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@703a8cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00596.hbm.xml"]
10:21:22,094 INFO - Mapping resource: com/landg/clex/hibernate/Tia00596.hbm.xml
10:21:22,094 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,094 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,094 INFO - Mapping class: com.landg.clex.hibernate.Tia00596 -> TIA00596
10:21:22,094 DEBUG - Mapped property: cccRevwType -> CCC_REVW_TYPE, type: string
10:21:22,094 DEBUG - Mapped property: reviewDate -> REVIEW_DATE, type: date
10:21:22,094 DEBUG - Mapped property: tia00571 -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00571
10:21:22,141 DEBUG - Mapped property: comp_id -> CCC_REVW_TYPE, REVIEW_DATE, CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00596PK
10:21:22,141 DEBUG - Mapped property: cccPrtyRelType -> CCC_PRTY_REL_TYPE, type: string
10:21:22,141 DEBUG - Mapped property: cancelledInd -> CANCELLED_IND, type: string
10:21:22,141 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,141 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@7040ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00597.hbm.xml"]
10:21:22,141 INFO - Mapping resource: com/landg/clex/hibernate/Tia00597.hbm.xml
10:21:22,141 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,141 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,141 INFO - Mapping class: com.landg.clex.hibernate.Tia00597 -> TIA00597
10:21:22,156 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:22,156 DEBUG - Mapped property: claimLetterType -> CLAIM_LETTER_TYPE, type: string
10:21:22,156 DEBUG - Mapped property: clmTrackDocType -> CLM_TRACK_DOC_TYPE, type: string
10:21:22,156 DEBUG - Mapped property: dreqCreatTstamp -> DREQ_CREAT_TSTAMP, type: timestamp
10:21:22,156 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:22,156 DEBUG - Mapped property: comp_id -> CNTR_ID, CLAIM_LETTER_TYPE, CLM_TRACK_DOC_TYPE, DREQ_CREAT_TSTAMP, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00597PK
10:21:22,156 DEBUG - Mapped property: despCreateTstamp -> DESP_CREATE_TSTAMP, type: timestamp
10:21:22,172 DEBUG - Mapped property: cccPrtyRelType -> CCC_PRTY_REL_TYPE, type: string
10:21:22,172 DEBUG - Mapped property: communctMethType -> COMMUNCT_METH_TYPE, type: string
10:21:22,172 DEBUG - Mapped property: localPrntReqInd -> LOCAL_PRNT_REQ_IND, type: string
10:21:22,172 DEBUG - Mapped property: suppressInd -> SUPPRESS_IND, type: string
10:21:22,172 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:22,172 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,172 DEBUG - Mapped property: tia00617s, type: java.util.Set
10:21:22,172 DEBUG - Mapped property: tia00478 -> PRTY_ID, type: com.landg.clex.hibernate.Tia00478
10:21:22,172 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@704f0cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00598.hbm.xml"]
10:21:22,172 INFO - Mapping resource: com/landg/clex/hibernate/Tia00598.hbm.xml
10:21:22,172 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,172 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,203 INFO - Mapping class: com.landg.clex.hibernate.Tia00598 -> TIA00598
10:21:22,203 DEBUG - Mapped property: assessReasType -> ASSESS_REAS_TYPE, type: string
10:21:22,203 DEBUG - Mapped property: createTstamp -> CREATE_TSTAMP, type: timestamp
10:21:22,203 DEBUG - Mapped property: tia00595 -> CLAIM_CASE_NUMBER, CNTR_ID, BENEFIT_TYPE, type: com.landg.clex.hibernate.Tia00595
10:21:22,203 DEBUG - Mapped property: comp_id -> ASSESS_REAS_TYPE, CREATE_TSTAMP, CLAIM_CASE_NUMBER, CNTR_ID, BENEFIT_TYPE, type: com.landg.clex.hibernate.Tia00598PK
10:21:22,203 DEBUG - Mapped property: assessDecnType -> ASSESS_DECN_TYPE, type: string
10:21:22,203 DEBUG - Mapped property: logonId -> LOGON_ID, type: string
10:21:22,203 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,203 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@70538cb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00601.hbm.xml"]
10:21:22,203 INFO - Mapping resource: com/landg/clex/hibernate/Tia00601.hbm.xml
10:21:22,219 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,219 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,219 INFO - Mapping class: com.landg.clex.hibernate.Tia00601 -> TIA00601
10:21:22,219 DEBUG - Mapped property: claimCaseNumber -> CLAIM_CASE_NUMBER, type: integer
10:21:22,219 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:22,219 DEBUG - Mapped property: comp_id -> CLAIM_CASE_NUMBER, CNTR_ID, type: com.landg.clex.hibernate.Tia00601PK
10:21:22,219 DEBUG - Mapped property: refdInLetterInd -> REFD_IN_LETTER_IND, type: string
10:21:22,219 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,219 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@7059ccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00602.hbm.xml"]
10:21:22,219 INFO - Mapping resource: com/landg/clex/hibernate/Tia00602.hbm.xml
10:21:22,328 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,328 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,344 INFO - Mapping class: com.landg.clex.hibernate.Tia00602 -> TIA00602
10:21:22,359 DEBUG - Mapped property: cntrId -> CNTR_ID, type: string
10:21:22,359 DEBUG - Mapped property: claimChecklistType -> CLAIM_CHECKLIST_TYPE, type: string
10:21:22,359 DEBUG - Mapped property: creationTimestamp -> CREATION_TIMESTAMP, type: timestamp
10:21:22,359 DEBUG - Mapped property: tia00570 -> CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00570
10:21:22,359 DEBUG - Mapped property: comp_id -> CNTR_ID, CLAIM_CHECKLIST_TYPE, CREATION_TIMESTAMP, CLAIM_CASE_NUMBER, type: com.landg.clex.hibernate.Tia00602PK
10:21:22,359 DEBUG - Mapped property: expectedRespDate -> EXPECTED_RESP_DATE, type: date
10:21:22,359 DEBUG - Mapped property: createdByLogonId -> CREATED_BY_LOGON_ID, type: string
10:21:22,359 DEBUG - Mapped property: completedByLogonId -> COMPLETED_BY_LOGON_ID, type: string
10:21:22,359 DEBUG - Mapped property: completionTimestamp -> COMPLETION_TIMESTAMP, type: timestamp
10:21:22,359 DEBUG - Mapped property: maintUserId -> MAINT_USER_ID, type: string
10:21:22,359 DEBUG - hibernate/SessionFactory<-org.dom4j.tree.DefaultAttribute@706bccb0 [Attribute: name resource value "com/landg/clex/hibernate/Tia00617.hbm.xml"]
10:21:22,359 INFO - Mapping resource: com/landg/clex/hibernate/Tia00617.hbm.xml
10:21:22,359 DEBUG - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:21:22,359 DEBUG - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:21:22,375 INFO - Mapping class: com.landg.clex.hibernate.Tia00617 -> TIA00617
10:21:22,375 DEBUG - Mapped property: claimCaseNumber -> CLAIM_CASE_NUMBER, type: integer
10:21:22,375 DEBUG - Mapped property: claimActCntrID -> CLAIM_ACT_CNTR_ID, type: string
10:21:22,375 DEBUG - Mapped property: claimReqCntrID -> CLAIM_REQ_CNTR_ID, type: string
10:21:22,375 DEBUG - Mapped property: clmTrackDocType -> CLM_TRACK_DOC_TYPE, type: string
10:21:22,375 DEBUG - Mapped property: prtyID -> PRTY_ID, type: string
10:21:22,375 DEBUG - Mapped property: cccPrtyRelType -> CCC_PRTY_REL_TYPE, type: string
10:21:22,375 DEBUG - Mapped property: activityTimestamp -> ACTIVITY_TIMESTAMP, type: timestamp
10:21:22,375 DEBUG - Mapped property: claimLetterType -> CLAIM_LETTER_TYPE, type: string
10:21:22,375 DEBUG - Mapped property: clmReqDocType -> CLM_REQ_DOC_TYPE, type: string
10:21:22,375 DEBUG - Mapped property: dreqCreatTstamp -> DREQ_CREAT_TSTAMP, type: timestamp
10:21:22,422 DEBUG - Mapped property: comp_id -> CLAIM_CASE_NUMBER, CLAIM_ACT_CNTR_ID, CLAIM_REQ_CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, CLAIM_LETTER_TYPE, CLM_REQ_DOC_TYPE, DREQ_CREAT_TSTAMP, type: com.landg.clex.hibernate.Tia00617PK
10:21:22,438 DEBUG - Mapped property: tia00597 -> CLAIM_CASE_NUMBER, CLAIM_REQ_CNTR_ID, CLAIM_LETTER_TYPE, CLM_REQ_DOC_TYPE, DREQ_CREAT_TSTAMP, type: com.landg.clex.hibernate.Tia00597
10:21:22,438 DEBUG - Mapped property: tia00587 -> CLAIM_CASE_NUMBER, CLAIM_ACT_CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, type: com.landg.clex.hibernate.Tia00587
10:21:22,438 INFO - Configured SessionFactory: hibernate/SessionFactory
10:21:22,438 DEBUG - properties: {java.assistive=ON, java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\bin, java.vm.version=1.3.1, connection.datasource=jdbc/clex/CLEX_DS, java.vm.vendor=IBM Corporation, java.vendor.url=http://www.ibm.com/, path.separator=;, java.vm.name=Classic VM, file.encoding.pkg=sun.io, use_outer_join=false, java.vm.specification.name=Java Virtual Machine Specification, user.dir=C:\Workspace5.1, java.runtime.version=1.3.1, java.fullversion=J2RE 1.3.1 IBM Windows 32 build cn131w-20030329 ORB130 (JIT enabled: jitc), java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, os.arch=x86, java.io.tmpdir=C:\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., java.awt.fonts=, os.name=Windows 2000, hibernate.connection.datasource=jdbc/clex/CLEX_DS, java.library.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\bin;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\WINNT\system32\nls;C:\WINNT\system32\nls\ENGLISH;C:\Program Files\IBM\Trace Facility;C:\Personal Communications;C:\Program Files\MQSeries\Java\lib;C:\IBM\IMNNQ;C:\sqllib\BIN;C:\sqllib\FUNCTION;C:\sqllib\SAMPLES\REPL;C:\sqllib\HELP;C:\landg\;C:\PROGRA~1\PVCS\vm\win32\bin;C:\PROGRA~1\PVCS\vm\common\bin\win32;C:\PROGRA~1\UltraEdit;C:\PROGRA~1\Rational\common;C:\_ChrisRiddick\apache-ant-1.6.0\bin;c:\_ChrisRiddick\apache-forrest-0.5.1-bin\bin;C:\Program Files\JProbe Suite 5.0.1\bin;;Z:.;Y:.;W:.;, java.specification.name=Java Platform API Specification, java.class.version=46.0, invokedviajava=, os.version=5.0, user.home=C:\Documents and Settings\cr20881, user.timezone=Europe/London, java.awt.printerjob=sun.awt.windows.WPrinterJob, file.encoding=Cp1252, java.specification.version=1.3, transaction.manager_lookup_class=net.sf.hibernate.transaction.WebSphereTransactionManagerLookup, show_sql=true, user.name=cr20881, java.class.path=C:\Workspace5.1\hibernate\ClexHibernateTest\bin;C:\Workspace5.1\hibernate\ClexHibernateSchema\bin;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\rt.jar;C:\Workspace5.1\hibernate\ClexHibernateEJB\ejbModule;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\j2ee.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ivjejb35.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\vaprt.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ras.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\utils.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\csicpi.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ejbcontainer.jar;C:\Workspace5.1\hibernate\ClexHibernateSchema\bin;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\cglib-2.0-rc2.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-collections-2.1.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-lang-1.0.1.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-logging-1.0.3.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\dom4j-1.4.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\ehcache-0.6.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\odmg-3.0.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\log4j-1.2.8.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\LGHibernate2.jar;C:\SQLLIB\java\db2java.zip;C:\Workspace5.1\hibernate\ClexHibernate\Properties;C:\Program Files\IBM\WebSphere Studio v5.1\eclipse\plugins\org.junit_3.8.1\junit.jar, hibernate.show_sql=true, java.vm.specification.version=1.0, java.home=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre, hibernate.dialect=net.sf.hibernate.dialect.DB2Dialect, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=false, java.vm.info=J2RE 1.3.1 IBM Windows 32 build cn131w-20030329 ORB130 (JIT enabled: jitc), java.version=1.3.1, java.ext.dirs=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\ext, sun.boot.class.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\rt.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\i18n.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\classes, java.vendor=IBM Corporation, file.separator=\, hibernate.session_factory_name=hibernate/SessionFactory, java.vendor.url.bug=, java.compiler=jitc, sun.io.unicode.encoding=UnicodeLittle, hibernate.use_outer_join=false, hibernate.transaction.manager_lookup_class=net.sf.hibernate.transaction.WebSphereTransactionManagerLookup, user.region=GB, dialect=net.sf.hibernate.dialect.DB2Dialect}
10:21:22,438 INFO - processing one-to-many association mappings
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00577sByFrstPrtyId
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00577sByFrstPrtyId -> TIA00577
10:21:22,438 DEBUG - Mapped collection key: FRST_PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00577
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00577sByScndPrtyId
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00577sByScndPrtyId -> TIA00577
10:21:22,438 DEBUG - Mapped collection key: SCND_PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00577
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00580s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00580s -> TIA00580
10:21:22,438 DEBUG - Mapped collection key: PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00580
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00597s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00597s -> TIA00597
10:21:22,438 DEBUG - Mapped collection key: PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00597
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00586s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00586s -> TIA00586
10:21:22,438 DEBUG - Mapped collection key: PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00586
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00478.tia00552s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00478.tia00552s -> TIA00552
10:21:22,438 DEBUG - Mapped collection key: PRTY_ID, one-to-many: com.landg.clex.hibernate.Tia00552
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00480.tia00583s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00480.tia00583s -> TIA00583
10:21:22,438 DEBUG - Mapped collection key: ORGN_ID, one-to-many: com.landg.clex.hibernate.Tia00583
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00488.tia00489s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00488.tia00489s -> TIA00489
10:21:22,438 DEBUG - Mapped collection key: ADDR_ID, one-to-many: com.landg.clex.hibernate.Tia00489
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00488.tia00487s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00488.tia00487s -> TIA00487
10:21:22,438 DEBUG - Mapped collection key: ADDR_ID, one-to-many: com.landg.clex.hibernate.Tia00487
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00547.tia00548s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00547.tia00548s -> TIA00548
10:21:22,438 DEBUG - Mapped collection key: CNTC_ID, one-to-many: com.landg.clex.hibernate.Tia00548
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00548.tia00590s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00548.tia00590s -> TIA00590
10:21:22,438 DEBUG - Mapped collection key: CNTC_ID, CNTC_REAS_TYPE, one-to-many: com.landg.clex.hibernate.Tia00590
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00548.tia00588s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00548.tia00588s -> TIA00588
10:21:22,438 DEBUG - Mapped collection key: CNTC_ID, CNTC_REAS_TYPE, one-to-many: com.landg.clex.hibernate.Tia00588
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00548.tia00591s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00548.tia00591s -> TIA00591
10:21:22,438 DEBUG - Mapped collection key: CNTC_ID, CNTC_REAS_TYPE, one-to-many: com.landg.clex.hibernate.Tia00591
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00569.tia00571s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00569.tia00571s -> TIA00571
10:21:22,438 DEBUG - Mapped collection key: CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00569.tia00589s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00569.tia00589s -> TIA00589
10:21:22,438 DEBUG - Mapped collection key: CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00589
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00569.tia00552s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00569.tia00552s -> TIA00552
10:21:22,438 DEBUG - Mapped collection key: CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00552
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00602s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00602s -> TIA00602
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00602
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00590s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00590s -> TIA00590
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00590
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00591s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00591s -> TIA00591
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00591
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00584s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00584s -> TIA00584
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00584
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00571s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00571s -> TIA00571
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00597s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00597s -> TIA00597
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00597
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00570.tia00586s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00570.tia00586s -> TIA00586
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00586
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00596s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00596s -> TIA00596
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00596
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00582s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00582s -> TIA00582
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00582
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00572s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00572s -> TIA00572
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00572
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00579s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00579s -> TIA00579
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00579
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00595s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00595s -> TIA00595
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00595
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00571.tia00592s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00571.tia00592s -> TIA00592
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00592
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00573.tia00575s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00573.tia00575s -> TIA00575
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, one-to-many: com.landg.clex.hibernate.Tia00575
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00578.tia00579s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00578.tia00579s -> TIA00579
10:21:22,438 DEBUG - Mapped collection key: SORT_CODE, ACCOUNT_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00579
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00580.tia00581s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00580.tia00581s -> TIA00581
10:21:22,438 DEBUG - Mapped collection key: SLES_AGMT_ID, one-to-many: com.landg.clex.hibernate.Tia00581
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00583.tia00589s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00583.tia00589s -> TIA00589
10:21:22,438 DEBUG - Mapped collection key: ORGN_ID, REASS_ACNT_NUMBER, one-to-many: com.landg.clex.hibernate.Tia00589
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00586.tia00587s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00586.tia00587s -> TIA00587
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, one-to-many: com.landg.clex.hibernate.Tia00587
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00587.tia00588s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00587.tia00588s -> TIA00588
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, one-to-many: com.landg.clex.hibernate.Tia00588
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00587.tia00617s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00587.tia00617s -> TIA00617
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CLAIM_ACT_CNTR_ID, CLM_TRACK_DOC_TYPE, PRTY_ID, CCC_PRTY_REL_TYPE, ACTIVITY_TIMESTAMP, one-to-many: com.landg.clex.hibernate.Tia00617
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00593.tia00594s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00593.tia00594s -> TIA00594
10:21:22,438 DEBUG - Mapped collection key: MEDICAL_COND_TYPE, DEFN_START_DATE, one-to-many: com.landg.clex.hibernate.Tia00594
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00595.tia00598s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00595.tia00598s -> TIA00598
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CNTR_ID, BENEFIT_TYPE, one-to-many: com.landg.clex.hibernate.Tia00598
10:21:22,438 DEBUG - Second pass for collection: com.landg.clex.hibernate.Tia00597.tia00617s
10:21:22,438 INFO - Mapping collection: com.landg.clex.hibernate.Tia00597.tia00617s -> TIA00617
10:21:22,438 DEBUG - Mapped collection key: CLAIM_CASE_NUMBER, CLAIM_REQ_CNTR_ID, CLAIM_LETTER_TYPE, CLM_REQ_DOC_TYPE, DREQ_CREAT_TSTAMP, one-to-many: com.landg.clex.hibernate.Tia00617
10:21:22,438 INFO - processing one-to-one association property references
10:21:22,438 INFO - processing foreign key constraints
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00578
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00573
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00569
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00569
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00580
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00488
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00488
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00595
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00593
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00547
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00548
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00548
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00583
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00569
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00587
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00548
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00586
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00478
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00570
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00480
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00571
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00587
10:21:22,438 DEBUG - resolving reference to class: com.landg.clex.hibernate.Tia00597
10:21:22,484 INFO - Using dialect: net.sf.hibernate.dialect.DB2Dialect
10:21:22,484 INFO - Use outer join fetching: false
10:21:22,484 INFO - JNDI InitialContext properties:{}
10:21:23,438 INFO - Using datasource: jdbc/clex/CLEX_DS
10:21:23,453 INFO - instantiating TransactionManagerLookup: net.sf.hibernate.transaction.WebSphereTransactionManagerLookup
10:21:23,453 INFO - instantiated TransactionManagerLookup
10:21:24,781 INFO - Use scrollable result sets: true
10:21:24,781 INFO - Use JDBC3 getGeneratedKeys(): false
10:21:24,781 INFO - Optimize cache for minimal puts: false
10:21:24,781 INFO - echoing all SQL to stdout
10:21:24,781 INFO - Query language substitutions: {}
10:21:24,781 INFO - cache provider: net.sf.ehcache.hibernate.Provider
10:21:24,797 INFO - instantiating and configuring caches
10:21:24,812 INFO - building session factory
10:21:24,812 DEBUG - instantiating session factory with properties: {java.assistive=ON, java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\bin, java.vm.version=1.3.1, connection.datasource=jdbc/clex/CLEX_DS, java.vm.vendor=IBM Corporation, java.vendor.url=http://www.ibm.com/, path.separator=;, java.vm.name=Classic VM, file.encoding.pkg=sun.io, use_outer_join=false, java.vm.specification.name=Java Virtual Machine Specification, user.dir=C:\Workspace5.1, java.runtime.version=1.3.1, java.fullversion=J2RE 1.3.1 IBM Windows 32 build cn131w-20030329 ORB130 (JIT enabled: jitc), java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, os.arch=x86, java.io.tmpdir=C:\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., java.awt.fonts=, os.name=Windows 2000, hibernate.connection.datasource=jdbc/clex/CLEX_DS, java.library.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\bin;.;C:\WINNT\system32;C:\WINNT;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\WINNT\system32\nls;C:\WINNT\system32\nls\ENGLISH;C:\Program Files\IBM\Trace Facility;C:\Personal Communications;C:\Program Files\MQSeries\Java\lib;C:\IBM\IMNNQ;C:\sqllib\BIN;C:\sqllib\FUNCTION;C:\sqllib\SAMPLES\REPL;C:\sqllib\HELP;C:\landg\;C:\PROGRA~1\PVCS\vm\win32\bin;C:\PROGRA~1\PVCS\vm\common\bin\win32;C:\PROGRA~1\UltraEdit;C:\PROGRA~1\Rational\common;C:\_ChrisRiddick\apache-ant-1.6.0\bin;c:\_ChrisRiddick\apache-forrest-0.5.1-bin\bin;C:\Program Files\JProbe Suite 5.0.1\bin;;Z:.;Y:.;W:.;, java.specification.name=Java Platform API Specification, java.class.version=46.0, invokedviajava=, os.version=5.0, user.home=C:\Documents and Settings\cr20881, user.timezone=Europe/London, java.awt.printerjob=sun.awt.windows.WPrinterJob, file.encoding=Cp1252, java.specification.version=1.3, transaction.manager_lookup_class=net.sf.hibernate.transaction.WebSphereTransactionManagerLookup, show_sql=true, user.name=cr20881, java.class.path=C:\Workspace5.1\hibernate\ClexHibernateTest\bin;C:\Workspace5.1\hibernate\ClexHibernateSchema\bin;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\rt.jar;C:\Workspace5.1\hibernate\ClexHibernateEJB\ejbModule;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\j2ee.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ivjejb35.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\vaprt.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ras.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\utils.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\csicpi.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\lib\ejbcontainer.jar;C:\Workspace5.1\hibernate\ClexHibernateSchema\bin;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\cglib-2.0-rc2.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-collections-2.1.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-lang-1.0.1.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\commons-logging-1.0.3.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\dom4j-1.4.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\ehcache-0.6.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\odmg-3.0.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\log4j-1.2.8.jar;C:\Workspace5.1\hibernate\ClexHibernate\ThirdParty\LGHibernate2.jar;C:\SQLLIB\java\db2java.zip;C:\Workspace5.1\hibernate\ClexHibernate\Properties;C:\Program Files\IBM\WebSphere Studio v5.1\eclipse\plugins\org.junit_3.8.1\junit.jar, hibernate.show_sql=true, java.vm.specification.version=1.0, java.home=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre, hibernate.dialect=net.sf.hibernate.dialect.DB2Dialect, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=false, java.vm.info=J2RE 1.3.1 IBM Windows 32 build cn131w-20030329 ORB130 (JIT enabled: jitc), java.version=1.3.1, java.ext.dirs=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\ext, sun.boot.class.path=C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\rt.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\lib\i18n.jar;C:\Program Files\IBM\WebSphere Studio v5.1\runtimes\aes_v4\java\jre\classes, java.vendor=IBM Corporation, file.separator=\, hibernate.session_factory_name=hibernate/SessionFactory, java.vendor.url.bug=, java.compiler=jitc, sun.io.unicode.encoding=UnicodeLittle, hibernate.use_outer_join=false, hibernate.transaction.manager_lookup_class=net.sf.hibernate.transaction.WebSphereTransactionManagerLookup, user.region=GB, dialect=net.sf.hibernate.dialect.DB2Dialect}
10:21:28,094 DEBUG - initializing class SessionFactoryObjectFactory
10:21:28,094 DEBUG - registered: 8a828dddfac824e300fac824f09e0000 (hibernate/SessionFactory)
10:21:28,094 INFO - Factory name: hibernate/SessionFactory
10:21:28,094 INFO - JNDI InitialContext properties:{}
10:21:28,094 DEBUG - binding: hibernate/SessionFactory
10:21:28,094 DEBUG - Returning a Reference to the SessionFactory
10:21:28,109 DEBUG - Bound name: hibernate/SessionFactory
10:21:28,109 INFO -


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 18, 2004 6:37 am 
Beginner
Beginner

Joined: Mon Nov 24, 2003 12:44 pm
Posts: 40
...and more

10:21:28,109 WARN - InitialContext did not implement EventContext
10:21:28,109 DEBUG - instantiated session factory
10:21:28,109 DEBUG - obtaining JTA TransactionManager
10:21:28,125 INFO - WebSphere 4
10:21:28,219 DEBUG - opened session
10:21:28,219 DEBUG - begin
10:21:28,219 DEBUG - current autocommit status:true
10:21:28,219 DEBUG - disabling autocommit
10:21:28,219 DEBUG - iterate: select count(*) from com.landg.clex.hibernate.Tia00573 as tia00573
10:21:28,234 DEBUG - compiling query
10:21:28,250 DEBUG - flushing session
10:21:28,250 DEBUG - Flushing entities and processing referenced collections
10:21:28,250 DEBUG - Processing unreferenced collections
10:21:28,266 DEBUG - Scheduling collection removes/(re)creates/updates
10:21:28,266 DEBUG - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
10:21:28,266 DEBUG - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
10:21:28,266 DEBUG - Dont need to execute flush
10:21:28,266 DEBUG - HQL: select count(*) from com.landg.clex.hibernate.Tia00573 as tia00573
10:21:28,281 DEBUG - SQL: select count(*) as x0_0_ from CLEX.TIA00573 tia005730_
10:21:28,281 DEBUG - about to open: 0 open PreparedStatements, 0 open ResultSets
10:21:28,281 DEBUG - select count(*) as x0_0_ from CLEX.TIA00573 tia005730_
10:21:28,281 DEBUG - preparing statement
10:21:28,297 DEBUG - retrieving next results
10:21:28,312 DEBUG - exhausted results
10:21:28,312 DEBUG - closing iterator
10:21:28,312 DEBUG - done closing: 0 open PreparedStatements, 0 open ResultSets
10:21:28,312 DEBUG - closing statement
10:21:28,312 DEBUG - returning current results
10:21:28,312 DEBUG - commit
10:21:28,312 DEBUG - flushing session
10:21:28,312 DEBUG - Flushing entities and processing referenced collections
10:21:28,312 DEBUG - Processing unreferenced collections
10:21:28,312 DEBUG - Scheduling collection removes/(re)creates/updates
10:21:28,312 DEBUG - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
10:21:28,312 DEBUG - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
10:21:28,312 DEBUG - executing flush
10:21:28,312 DEBUG - post flush
10:21:28,312 DEBUG - transaction completion
10:21:28,312 DEBUG - re-enabling autocommit
10:21:28,312 DEBUG - closing session
10:21:28,312 DEBUG - disconnecting session
10:21:28,328 DEBUG - transaction completion
10:21:28,328 INFO - Time to run query = 93
10:21:28,328 DEBUG - Entered Tia00573Test.getAllRows()
10:21:28,328 DEBUG - opened session
10:21:28,328 DEBUG - begin
10:21:28,328 DEBUG - current autocommit status:true
10:21:28,328 DEBUG - disabling autocommit
10:21:28,328 DEBUG - find: from com.landg.clex.hibernate.Tia00573 as tia00573
10:21:28,328 DEBUG - compiling query
10:21:28,328 DEBUG - flushing session
10:21:28,328 DEBUG - Flushing entities and processing referenced collections
10:21:28,328 DEBUG - Processing unreferenced collections
10:21:28,328 DEBUG - Scheduling collection removes/(re)creates/updates
10:21:28,328 DEBUG - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
10:21:28,328 DEBUG - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
10:21:28,328 DEBUG - Dont need to execute flush
10:21:28,328 DEBUG - HQL: from com.landg.clex.hibernate.Tia00573 as tia00573
10:21:28,328 DEBUG - SQL: select tia005730_.CLAIM_CASE_NUMBER as CLAIM_CA1_, tia005730_.CNTR_ID as CNTR_ID, tia005730_.LEAD_CONTRACT_ID as LEAD_CON3_, tia005730_.PROD_ID as PROD_ID, tia005730_.PRODUCT_VER_TYPE as PRODUCT_5_, tia005730_.TTL_EXC_CLOSED_IND as TTL_EXC_6_, tia005730_.TTL_EXC_CLOSED_DAT as TTL_EXC_7_, tia005730_.ISA_IND as ISA_IND, tia005730_.TARGET_MAT_VAL as TARGET_M9_, tia005730_.MAINT_USER_ID as MAINT_U10_ from CLEX.TIA00573 tia005730_
10:21:28,328 DEBUG - about to open: 0 open PreparedStatements, 0 open ResultSets
10:21:28,328 DEBUG - select tia005730_.CLAIM_CASE_NUMBER as CLAIM_CA1_, tia005730_.CNTR_ID as CNTR_ID, tia005730_.LEAD_CONTRACT_ID as LEAD_CON3_, tia005730_.PROD_ID as PROD_ID, tia005730_.PRODUCT_VER_TYPE as PRODUCT_5_, tia005730_.TTL_EXC_CLOSED_IND as TTL_EXC_6_, tia005730_.TTL_EXC_CLOSED_DAT as TTL_EXC_7_, tia005730_.ISA_IND as ISA_IND, tia005730_.TARGET_MAT_VAL as TARGET_M9_, tia005730_.MAINT_USER_ID as MAINT_U10_ from CLEX.TIA00573 tia005730_
10:21:28,328 DEBUG - preparing statement
10:21:28,328 DEBUG - processing result set
10:21:28,328 DEBUG - loading [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,328 DEBUG - loading [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,344 DEBUG - attempting to resolve [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,344 DEBUG - object not resolved in any cache [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,344 DEBUG - Materializing entity: [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,344 DEBUG - about to open: 1 open PreparedStatements, 1 open ResultSets
10:21:28,344 DEBUG - select tia005700_.CLAIM_CASE_NUMBER as CLAIM_CA1_0_, tia005700_.CLAIM_TYPE as CLAIM_TYPE0_, tia005700_.CLAIM_CASE_ST_TYPE as CLAIM_CA3_0_, tia005700_.MANUAL_INPUT_IND as MANUAL_I4_0_, tia005700_.CREATE_TIMESTAMP as CREATE_T5_0_, tia005700_.SALARY as SALARY0_, tia005700_.OCCUPATION_TYPE as OCCUPATI7_0_, tia005700_.PERS_ID as PERS_ID0_, tia005700_.LOGON_ID as LOGON_ID0_, tia005700_.OTH_CONTRACT_IND as OTH_CON10_0_, tia005700_.OTH_MAT_CNTR_IND as OTH_MAT11_0_, tia005700_.CLM_PACK_DESPD_IND as CLM_PAC12_0_, tia005700_.MAINT_USER_ID as MAINT_U13_0_ from CLEX.TIA00570 tia005700_ where tia005700_.CLAIM_CASE_NUMBER=?
10:21:28,344 DEBUG - preparing statement
10:21:28,359 DEBUG - processing result set
10:21:28,359 DEBUG - result row: 1022
10:21:28,359 DEBUG - Initializing object from ResultSet: 1022
10:21:28,359 DEBUG - Hydrating entity: com.landg.clex.hibernate.Tia00570#1022
10:21:28,359 DEBUG - done processing result set (1 rows)
10:21:28,359 DEBUG - done closing: 1 open PreparedStatements, 1 open ResultSets
10:21:28,359 DEBUG - closing statement
10:21:28,359 DEBUG - total objects hydrated: 1
10:21:28,359 DEBUG - resolving associations for [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,359 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00602s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00590s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00591s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00584s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00571s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00597s#1022]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00570.tia00586s#1022]
10:21:28,375 DEBUG - done materializing entity [com.landg.clex.hibernate.Tia00570#1022]
10:21:28,375 DEBUG - attempting to resolve [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,375 DEBUG - object not resolved in any cache [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,375 DEBUG - Materializing entity: [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,375 DEBUG - about to open: 1 open PreparedStatements, 1 open ResultSets
10:21:28,375 DEBUG - select tia005690_.CNTR_ID as CNTR_ID0_, tia005690_.CNTRBROD_BSNS_CTGY as CNTRBROD2_0_, tia005690_.CNTRUWTG_PROD_CTGY as CNTRUWTG3_0_, tia005690_.INCN_MNTH as INCN_MNTH0_, tia005690_.INCN_YEAR as INCN_YEAR0_, tia005690_.EXPY_YEAR as EXPY_YEAR0_, tia005690_.SUM_ASRD as SUM_ASRD0_, tia005690_.VALN_CLSS as VALN_CLSS0_, tia005690_.RSNC_IND as RSNC_IND0_, tia005690_.POL_STTS as POL_STTS0_, tia005690_.LOCK_NMBR as LOCK_NMBR0_, tia005690_.PRODUCT_TYPE as PRODUCT12_0_, tia005690_.SCHEME_NUMBER as SCHEME_13_0_, tia005690_.MAINT_USER_ID as MAINT_U14_0_ from COMMON.TIA00569 tia005690_ where tia005690_.CNTR_ID=?
10:21:28,375 DEBUG - preparing statement
10:21:28,375 DEBUG - processing result set
10:21:28,375 DEBUG - result row: UK52308103
10:21:28,375 DEBUG - Initializing object from ResultSet: UK52308103
10:21:28,375 DEBUG - Hydrating entity: com.landg.clex.hibernate.Tia00569#UK52308103
10:21:28,375 DEBUG - done processing result set (1 rows)
10:21:28,375 DEBUG - done closing: 1 open PreparedStatements, 1 open ResultSets
10:21:28,375 DEBUG - closing statement
10:21:28,375 DEBUG - total objects hydrated: 1
10:21:28,375 DEBUG - resolving associations for [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00569.tia00571s#UK52308103]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00569.tia00589s#UK52308103]
10:21:28,375 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00569.tia00552s#UK52308103]
10:21:28,375 DEBUG - done materializing entity [com.landg.clex.hibernate.Tia00569#UK52308103]
10:21:28,375 DEBUG - loading [com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,375 DEBUG - attempting to resolve [com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,375 DEBUG - object not resolved in any cache [com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,375 DEBUG - Materializing entity: [com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,375 DEBUG - about to open: 1 open PreparedStatements, 1 open ResultSets
10:21:28,375 DEBUG - select tia005710_.CLAIM_CASE_NUMBER as CLAIM_CA1_0_, tia005710_.CNTR_ID as CNTR_ID0_, tia005710_.TITLE_TYPE as TITLE_TYPE0_, tia005710_.FREQUENCY_TYPE as FREQUENC4_0_, tia005710_.PURCH_REASON_TYPE as PURCH_RE5_0_, tia005710_.OCCUPATION_TYPE as OCCUPATI6_0_, tia005710_.REASSUR_BASIS_TYPE as REASSUR_7_0_, tia005710_.PROCUR_METHOD_TYPE as PROCUR_M8_0_, tia005710_.SALES_QUOTE_DATE as SALES_QU9_0_, tia005710_.INCEPTION_DATE as INCEPTI10_0_, tia005710_.EFFECTIVE_END_DATE as EFFECTI11_0_, tia005710_.DD_DETAIL_PRES_IND as DD_DETA12_0_, tia005710_.SIGNIFICNT_ALT_IND as SIGNIFI13_0_, tia005710_.CLAIM_ALREADY_IND as CLAIM_A14_0_, tia005710_.REINSTATED_IND as REINSTA15_0_, tia005710_.REINSTATEMENT_DATE as REINSTA16_0_, tia005710_.PREMIUM_AMOUNT as PREMIUM17_0_, tia005710_.INDEXED_IND as INDEXED18_0_, tia005710_.INDEXATION_DATE as INDEXAT19_0_, tia005710_.COVER_EXCL_IND as COVER_E20_0_, tia005710_.CNTR_SBTYP as CNTR_SBTYP0_, tia005710_.LEGACY_MKTING_NAME as LEGACY_22_0_, tia005710_.CONTRACT_AGE as CONTRAC23_0_, tia005710_.REASONS_FOR_RATING as REASONS24_0_, tia005710_.CREATE_TIMESTAMP as CREATE_25_0_, tia005710_.MATURITY_OPT_TYPE as MATURIT26_0_, tia005710_.MAINT_USER_ID as MAINT_U27_0_ from CLEX.TIA00571 tia005710_ where tia005710_.CLAIM_CASE_NUMBER=? and tia005710_.CNTR_ID=?
10:21:28,375 DEBUG - preparing statement
10:21:28,391 DEBUG - processing result set
10:21:28,391 DEBUG - result row: com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]
10:21:28,391 DEBUG - Initializing object from ResultSet: com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]
10:21:28,391 DEBUG - Hydrating entity: com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]
10:21:28,391 DEBUG - done processing result set (1 rows)
10:21:28,391 DEBUG - done closing: 1 open PreparedStatements, 1 open ResultSets
10:21:28,391 DEBUG - closing statement
10:21:28,391 DEBUG - total objects hydrated: 1
10:21:28,391 DEBUG - resolving associations for [com.landg.clex.hibernate.Tia00571#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00571.tia00596s#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - creating collection wrapper:[com.landg.clex.hibernate.Tia00571.tia00582s#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - loading [com.landg.clex.hibernate.Tia00573#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - attempting to resolve [com.landg.clex.hibernate.Tia00573#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - object not resolved in any cache [com.landg.clex.hibernate.Tia00573#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - Materializing entity: [com.landg.clex.hibernate.Tia00573#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,391 DEBUG - about to open: 1 open PreparedStatements, 1 open ResultSets
10:21:28,391 DEBUG - select tia005730_.CLAIM_CASE_NUMBER as CLAIM_CA1_0_, tia005730_.CNTR_ID as CNTR_ID0_, tia005730_.LEAD_CONTRACT_ID as LEAD_CON3_0_, tia005730_.PROD_ID as PROD_ID0_, tia005730_.PRODUCT_VER_TYPE as PRODUCT_5_0_, tia005730_.TTL_EXC_CLOSED_IND as TTL_EXC_6_0_, tia005730_.TTL_EXC_CLOSED_DAT as TTL_EXC_7_0_, tia005730_.ISA_IND as ISA_IND0_, tia005730_.TARGET_MAT_VAL as TARGET_M9_0_, tia005730_.MAINT_USER_ID as MAINT_U10_0_ from CLEX.TIA00573 tia005730_ where tia005730_.CLAIM_CASE_NUMBER=? and tia005730_.CNTR_ID=?
10:21:28,391 DEBUG - preparing statement
10:21:28,391 ERROR - IllegalArgumentException in class: com.landg.clex.hibernate.Tia00573PK, getter method of property: tia00571
10:21:28,391 DEBUG - done closing: 1 open PreparedStatements, 1 open ResultSets
10:21:28,391 DEBUG - closing statement
10:21:28,406 ERROR - Exception initializing proxy
net.sf.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.landg.clex.hibernate.Tia00573PK.tia00571
at net.sf.hibernate.property.BasicPropertyAccessor$BasicGetter.get(BasicPropertyAccessor.java:110)
at net.sf.hibernate.type.ComponentType.getPropertyValue(ComponentType.java:179)
at net.sf.hibernate.type.ComponentType.getPropertyValues(ComponentType.java:205)
at net.sf.hibernate.type.ComponentType.nullSafeGetValues(ComponentType.java:164)
at net.sf.hibernate.type.ComponentType.nullSafeSet(ComponentType.java:151)
at net.sf.hibernate.loader.Loader.bindPositionalParameters(Loader.java:674)
at net.sf.hibernate.loader.Loader.prepareQueryStatement(Loader.java:713)
at net.sf.hibernate.loader.Loader.doQuery(Loader.java:185)
at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:831)
at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:851)
at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:57)
at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:49)
at net.sf.hibernate.persister.EntityPersister.load(EntityPersister.java:419)
at net.sf.hibernate.impl.SessionImpl.doLoad(SessionImpl.java:2081)
at net.sf.hibernate.impl.SessionImpl.doLoadByClass(SessionImpl.java:1982)
at net.sf.hibernate.impl.SessionImpl.internalLoadOneToOne(SessionImpl.java:1909)
at net.sf.hibernate.type.OneToOneType.resolveIdentifier(OneToOneType.java:72)
at net.sf.hibernate.type.EntityType.resolveIdentifier(EntityType.java:215)
at net.sf.hibernate.impl.SessionImpl.initializeEntity(SessionImpl.java:2169)
at net.sf.hibernate.loader.Loader.doQuery(Loader.java:240)
at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:831)
at net.sf.hibernate.loader.Loader.loadEntity(Loader.java:851)
at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:57)
at net.sf.hibernate.loader.EntityLoader.load(EntityLoader.java:49)
at net.sf.hibernate.persister.EntityPersister.load(EntityPersister.java:419)
at net.sf.hibernate.impl.SessionImpl.doLoad(SessionImpl.java:2081)
at net.sf.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:1899)
at net.sf.hibernate.proxy.LazyInitializer.initialize(LazyInitializer.java:53)
at net.sf.hibernate.proxy.LazyInitializer.initializeWrapExceptions(LazyInitializer.java:60)
at net.sf.hibernate.proxy.LazyInitializer.getImplementation(LazyInitializer.java:164)
at net.sf.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:108)
at com.landg.clex.hibernate.Tia00571$$EnhancerByCGLIB$$ae7f410b.toString(<generated>)
at java.lang.String.valueOf(String.java(Inlined Compiled Code))
at java.lang.StringBuffer.append(StringBuffer.java(Compiled Code))
at org.apache.commons.lang.builder.ToStringStyle.appendDetail(ToStringStyle.java:337)
at org.apache.commons.lang.builder.ToStringStyle.appendInternal(ToStringStyle.java:322)
at org.apache.commons.lang.builder.ToStringStyle.append(ToStringStyle.java:224)
at org.apache.commons.lang.builder.ToStringBuilder.append(ToStringBuilder.java:326)
at com.landg.clex.hibernate.Tia00573PK.toString(Tia00573PK.java:33)
at net.sf.hibernate.engine.Key.toString(Key.java:54)
at java.lang.String.valueOf(String.java(Inlined Compiled Code))
at java.lang.StringBuffer.append(StringBuffer.java(Compiled Code))
at net.sf.hibernate.util.StringHelper.toString(StringHelper.java:164)
at net.sf.hibernate.loader.Loader.getRow(Loader.java:405)
at net.sf.hibernate.loader.Loader.doQuery(Loader.java:209)
at net.sf.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:133)
at net.sf.hibernate.loader.Loader.doList(Loader.java:950)
at net.sf.hibernate.loader.Loader.list(Loader.java:941)
at net.sf.hibernate.hql.QueryTranslator.list(QueryTranslator.java:834)
at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1512)
at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1491)
at net.sf.hibernate.impl.SessionImpl.find(SessionImpl.java:1483)
at com.landg.clex.test.hibernate.Tia00573Test.getAllRows(Tia00573Test.java:118)
at com.landg.clex.test.hibernate.Tia00573Test.main(Tia00573Test.java:46)
Caused by:
java.lang.IllegalArgumentException: object is not an instance of declaring class
at java.lang.reflect.Method.invoke(Native Method)
at net.sf.hibernate.property.BasicPropertyAccessor$BasicGetter.get(BasicPropertyAccessor.java:96)
... 55 more
10:21:28,406 DEBUG - done closing: 0 open PreparedStatements, 0 open ResultSets
10:21:28,406 DEBUG - closing statement
10:21:28,406 DEBUG - commit
10:21:28,406 DEBUG - flushing session
10:21:28,406 DEBUG - Flushing entities and processing referenced collections
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00602s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00602s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00590s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00590s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00591s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00591s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00584s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00584s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00571s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00571s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00597s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00597s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00570.tia00586s#1022], was: [com.landg.clex.hibernate.Tia00570.tia00586s#1022]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00569.tia00571s#UK52308103], was: [com.landg.clex.hibernate.Tia00569.tia00571s#UK52308103]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00569.tia00589s#UK52308103], was: [com.landg.clex.hibernate.Tia00569.tia00589s#UK52308103]
10:21:28,406 DEBUG - Collection found: [com.landg.clex.hibernate.Tia00569.tia00552s#UK52308103], was: [com.landg.clex.hibernate.Tia00569.tia00552s#UK52308103]
10:21:28,406 DEBUG - Processing unreferenced collections
10:21:28,406 DEBUG - Collection dereferenced: [com.landg.clex.hibernate.Tia00571.tia00596s#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,406 DEBUG - Collection dereferenced: [com.landg.clex.hibernate.Tia00571.tia00582s#com.landg.clex.hibernate.Tia00571PK@398eccb3[tia00570=com.landg.clex.hibernate.Tia00570@540c8cb2[claimCaseNumber=1022],tia00569=com.landg.clex.hibernate.Tia00569@1b90cb2[cntrId=UK52308103]]]
10:21:28,406 DEBUG - Scheduling collection removes/(re)creates/updates
10:21:28,422 DEBUG - Flushed: 0 insertions, 0 updates, 0 deletions to 3 objects
10:21:28,422 DEBUG - Flushed: 0 (re)creations, 0 updates, 2 removals to 12 collections
10:21:28,422 DEBUG - listing entities:
10:21:28,422 DEBUG - com.landg.clex.hibernate.Tia00569{valnClss=250W, lockNmbr=null, cntruwtgProdCtgy=null, productType=AM, tia00571s=uninitialized, maintUserId=pp10000, polStts=01, cntrId=UK52308103, incnMnth=null, tia00552s=uninitialized, incnYear=null, cntrbrodBsnsCtgy=null, schemeNumber=null, rsncInd= , expyYear= , sumAsrd=null, tia00589s=uninitialized}
10:21:28,438 DEBUG - com.landg.clex.hibernate.Tia00570{manualInputInd=y, othMatCntrInd= , claimCaseNumber=1022, claimCaseStType=AA, tia00584s=uninitialized, claimType=AA, tia00602s=uninitialized, persId=BBBBL8PY0, createTimestamp=17 December 2003 13:54:47, tia00590s=uninitialized, clmPackDespdInd=N, maintUserId=pp10000, othContractInd= , tia00571s=uninitialized, occupationType= , logonId=pp10000, tia00591s=uninitialized, tia00597s=uninitialized, salary=null, tia00586s=uninitialized}
10:21:28,438 DEBUG - com.landg.clex.hibernate.Tia00571{tia00572s=null, inceptionDate=null, purchReasonType=null, reassurBasisType=null, tia00592s=null, titleType=null, tia00574=null, tia00595s=null, tia00573=null, maturityOptType=null, cntrSbtyp=null, legacyMktingName=null, indexationDate=null, claimAlreadyInd=null, createTimestamp=null, indexedInd=null, reinstatedInd=null, tia00579s=null, contractAge=null, tia00596s=null, frequencyType=null, tia00582s=null, premiumAmount=null, significntAltInd=null, procurMethodType=null, maintUserId=null, effectiveEndDate=null, reasonsForRating=null, occupationType=null, reinstatementDate=null, ddDetailPresInd=null, coverExclInd=null, comp_id=Tia00571PK{tia00569=Tia00569#UK52308103, tia00570=Tia00570#1022}, salesQuoteDate=null}
10:21:28,438 DEBUG - executing flush
10:21:28,438 DEBUG - post flush
10:21:28,438 DEBUG - transaction completion
10:21:28,438 DEBUG - re-enabling autocommit
10:21:28,438 DEBUG - closing session
10:21:28,438 DEBUG - disconnecting session
10:21:28,438 DEBUG - transaction completion
[/code]

Is this a problem in the mappings or a shortfall in Hibernate that I need to work around?

Any help will be greatfully received.

Regards
Chris


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 18, 2004 10:52 am 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
Well, honestly, a 4-post long debug is too much for use.
Can you simplify your mapping to isolte the problem ?

_________________
Emmanuel


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 18, 2004 12:46 pm 
Beginner
Beginner

Joined: Mon Nov 24, 2003 12:44 pm
Posts: 40
Apologies for the above. I wasn't thinking straight.
Anyway, I have cut it down and reposted as a new topic, just in case this topic causes performance problems for the forum.

Chris


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 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.