Hello! We're currently using a modified version excel addon to import data from an excel file. We want to have more control of our import process by using a domain object with nature INMEMORY_ENTITY so we could perform validations in it, then call an action through a wrapped domain service. As far as I have observed, the domain object needs to implement ViewModel.Cloneable for DomainObjectContainer#validate to proceed due to DisabledFacetOnPropertyDerivedFromRecreatableObject.
Is it possible to remove the deprecated @Hidden annotation on ViewModel.Cloneable#clone? It currently causes metamodel validation to fail and we don't want to set isis.reflector.validator.allowDeprecated. Is there another way to automagically implement clone for view models? We are currently using MementoService with DomainObjectContainer#newViewModelInstance based on the not-yet-released isis-wicket-wizard module. Thanks!
