Changes between Version 13 and Version 14 of ebXMLPersistenceLayer


Ignore:
Timestamp:
Dec 2, 2008, 4:10:37 AM (16 years ago)
Author:
erikvaningen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ebXMLPersistenceLayer

    v13 v14  
    4848This class represents the XML xsd:duration type in Java. The source for this class was taken from the Axis project. This class is mapped using a custom Hibernate type that will map an instance to a SQL STRING type using its toString() and Duration(String) methods. So in the database the duration will be stored in the PnYnMnDTnHnMnS format.
    4949 
     50----
     51
     52=== ID generator ===
     53The Identifiable class is the superclass for a lot of classes. It had as a generator this definition:
     54<generator class="native"/>
     55Probably this has been taken from the book or reference documentation. The Hibernate forum tells that is should be
     56<generator class="sequence" />  for the chosen inheritance strategy (Table per concrete class with unions).
     57