Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.3.7
-
Fix Version/s: 2.3-M2
-
Component/s: Converters
-
Labels:None
Description
the JSON converter outputs the full classname in the field "class", it would be useful to get same behaviour with the XML marshaller, even with a config option.
Sample:
class Product
current XML render:
<product id="3" version="1">
<name>Product Name</name>
<price>299.0</price>
</product>
Instead, I would get:
<product id="3" version="1" class="my.domain.Product">
<name>Product Name</name>
<price>299.0</price>
</product>
Activity
- All
- Comments
- Work Log
- History
- Activity
- Git Commits
With the planed emphasis on REST support in v2.2 and the importance of non-html responses to REST applications, it would make sense to target this issue at v2.2.