Uploaded image for project: 'JDO'
  1. JDO
  2. JDO-702

Support for specification of embedded inherited objects

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Major
    • Resolution: Fixed
    • JDO 3 (3.0)
    • JDO 3.1-rc1
    • api, specification, tck
    • None

    Description

      While JDO2+ allows specification of embedded objects stored with primary objects, it doesn't have any specific way of specifying the embedded object as being inherited and how you would persist it. In particular there is no way to define a discriminator (column) for the embedded object. If we have an example from the JDO spec, and if we have a subclass of Address as also persistable, then we need to specify the discriminator for "primaryAddress" field.

      <class name="Employee" table="EMP">
      ...
      <!-- field type is Address -->
      <field name="primaryAddress">
      <embedded null-indicator-column="PADDR_STREET">
      <discriminator column="PADDR_DISCRIM"/>
      <field name="street" column="PADDR_STREET"/>
      <field name="city" column="PADDR_CITY"/>
      <field name="state" column="PADDR_STATE"/>
      <field name="zip" column="PADDR_ZIPCODE"/>
      </embedded>
      </field>
      </class>

      So the XSD/DTD need updates to allow <discriminator> under <embedded>, the JDO Metadata API needs to allow this also, and the @Embedded annotation needs a "discriminator" attribute adding.

      Attachments

        1. JDO-702.patch
          3 kB
          Andy Jefferson
        2. JDO-702-test.patch
          31 kB
          Andy Jefferson

        Activity

          People

            clr Craig L Russell
            andyj Andy Jefferson
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: