-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make better use of Jackson #9
Comments
Progress report
What do you think, @dexX7 ? |
TODO:
|
These changes are fantastic, really a great improvement! In Omni Core we currently have a few results where some fields are omitted, depending on the state, e.g. whether a crowdsale is closed, or active, whether a transaction is confirmed or unconfirmed, which makes mapping to plain data objects probably pretty difficult. Makes me wonder.. |
POJOs to create:
Note: These changes are changing the API. |
Can't those fields just be nullable in the POJO? |
It returns a single unspent output or null, if the output is spent.
Ah, sure. |
Thanks. Fixed, above. |
@dexX7 Finished all but (8) and (9) in the POJOs to create list. Any ideas or suggestions on (8) or (9)? Update: I think the POJO definitions for (8) and (9) are definitely needed for the server implementation. The server will need to them to implement the standard JSON-RPC results and they can also be used for serializing JSON for the STOMP feed of transactions. |
If |
Yes. In addition to mapping to |
Finished in v0.0.10: ff680a0. |
Better use of Jackson will help us to:
The text was updated successfully, but these errors were encountered: