Changes between Version 13 and Version 14 of ebXMLPersistenceLayer
- Timestamp:
- 12/02/08 04:10:37 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ebXMLPersistenceLayer
v13 v14 48 48 This 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. 49 49 50 ---- 51 52 === ID generator === 53 The Identifiable class is the superclass for a lot of classes. It had as a generator this definition: 54 <generator class="native"/> 55 Probably 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