Closed tcheeric closed 1 year ago
@guilhermegps - I figured out that the only place the unmarshaller classes were useful was in the unit tests. They helped to easily create an element object (event, tag, or message) based on its string representation. It was handy, but can also be achieved in a different way...
Sounds good for me.
We can use Jackson for the same propose. Using Jackson's JsonNode and ArrayNode, we may have fast access to the values serialized and deserialized. We also can use jackson to convert these values to java native types as "String", "Boolean", etc.
This is completed.