Uploaded image for project: 'Causeway'
  1. Causeway
  2. CAUSEWAY-1096

Derive the object type from the schema and table of @PersistenceCapable (but ensure backward compatibility is preserved).

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • core-1.8.0
    • 1.9.0
    • Core
    • None

    Description

      The algorithm should be:

      1. @DomainObject(objectType = ...)
      2. @ObjectType(...)
      3. @PersistenceCapable(schema=..., table=...)
      4. use the default fully qualified class name.

      This ticket is all about introducing (3). The inferred objecttype should be:
      schemaname.TableName, where schemaname is lowercased.

      If schema is not present, then should ignore.

      ~~~
      In addition, to support any legacy serialized data that uses the fully qualified class name, the resolution of objects by object type should first lookup the object type by its specified name, else fallback to looking up as if FQN.

      eg suppose have:

      package com.mycompany.myapp
      @DomainObject(objectType="CUS")
      public class Customer { ... }
      

      then the serialized form of this is "CUS:1", but Isis should also resolve this object if "com.mycompany.myapp.Customer:1" is provided instead.

      Attachments

        Activity

          People

            Unassigned Unassigned
            danhaywood Daniel Keir Haywood
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: