Description
Currently the framework has 4 viewmodel serialization strategies in order of highest to lowest precedence, if encountered:
- use JAXB semantics
- implement ViewModel interface
- implement Serializable
- fallback: gather all non-mixed-in properties into a 'memento' ... requires a @DomainObject(nature=...) annotation
however, we discussed to change the order to
- implement ViewModel interface
- implement Serializable
- use JAXB semantics
- fallback: gather all non-mixed-in properties into a 'memento'