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

View models with mandatory enum properties are not initialized correctly.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • core-1.8.0
    • 1.12.0
    • Core
    • None

    Description

      ... because deep within Isis, in PersistenceSession#createViewModelInstance, there is some code that initializes all mandatory fields of a pojo just after an adapter has been created for it.

      This has the effect of trampling the state on the pojo that was created by from the view model's memento.

      here's one possible fix:

          public ObjectAdapter createViewModelInstance(final ObjectSpecification objectSpec, final String memento) {
              if (LOG.isDebugEnabled()) {
                  LOG.debug("creating view model instance of " + objectSpec);
              }
              final Object pojo = objectSpec.createObject();
      
              final ViewModelFacet facet = objectSpec.getFacet(ViewModelFacet.class);
      
              //
              // the code below is horrid... we effectively initialize the view model pojo twice from the memento.
              // An alternative would be to not do the default initialize above, but that might change behaviour
              //
      
              // we initialize the pojo here in order to be able to build the OID
              facet.initialize(pojo, memento);
      
              final ObjectAdapter adapter = getAdapterManager().adapterFor(pojo);
      
              // next, (legacy behaviour... remove?) we initialize the pojo (set default values for any non-optional fields)
              // nb: this could have the effect of overwriting some of the state just set up
              objectSpec.initialize(adapter);
      
              // so finally we re-initialize, in order to reinstate any state that might have been overwritten.
              facet.initialize(pojo, memento);
      
              return adapter;
          }
      

      However, perhaps we should simply not do the defaulting for view models at all, on the basis that it's the view model's own responsibility to set up its entire state.

      So another possible fix is simply:

          public ObjectAdapter createViewModelInstance(final ObjectSpecification objectSpec, final String memento) {
              if (LOG.isDebugEnabled()) {
                  LOG.debug("creating view model instance of " + objectSpec);
              }
              final Object pojo = objectSpec.createObject();
      
              final ViewModelFacet facet = objectSpec.getFacet(ViewModelFacet.class);
              facet.initialize(pojo, memento);
      
              final ObjectAdapter adapter = getAdapterManager().adapterFor(pojo);
      
              // no longer initialize the pojo for any default values 
      
              return adapter;
          }
      

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated:
              Resolved: