You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently JSON serializer and deserializer in the ReportNode JSON module are only defined on ReportNodeImpl implementation.
Describe the expected behavior
I expect to be able to work only with ReportNode interface in client services when calling (de)serialization features.
Describe the motivation
In a spring boot service I would like to use spring integrated features of (de)serialization in the REST API directly on ReportNode interface, i.e. any implementation of ReportNode interface could be sent as body of a REST endpoint for example and then thanks to the JsonModule spring and jackson are directly able to identify the implementation and call the correct deserializer to create the corresponding object and return it behind the ReportNode interface. The aim is to use only ReportNode interface in the service (no implementation dependency) and to use integrated features of spring/jackson (de)serialization.
Extra Information
No response
The text was updated successfully, but these errors were encountered:
Describe the current behavior
Currently JSON serializer and deserializer in the ReportNode JSON module are only defined on ReportNodeImpl implementation.
Describe the expected behavior
I expect to be able to work only with ReportNode interface in client services when calling (de)serialization features.
Describe the motivation
In a spring boot service I would like to use spring integrated features of (de)serialization in the REST API directly on ReportNode interface, i.e. any implementation of ReportNode interface could be sent as body of a REST endpoint for example and then thanks to the JsonModule spring and jackson are directly able to identify the implementation and call the correct deserializer to create the corresponding object and return it behind the ReportNode interface. The aim is to use only ReportNode interface in the service (no implementation dependency) and to use integrated features of spring/jackson (de)serialization.
Extra Information
No response
The text was updated successfully, but these errors were encountered: