hapi-fhir/TODO.txt

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-03-04 08:13:28 -05:00
2014-03-07 17:31:05 -05:00
* Implement JSON parser and encoder- I'm thinking probably just using GSON
and writing the encode() part from scratch. For the parse() part, the
ParserState class from the XML parser should be able to be shared with
the Json parser, which will make it a lot easier to implement..?
* Implement strategy for narrative generation- I'm thinking maybe
an interface that turns a given resource into an HTML representation
and then a default implementation for our basic types (Patient, Observation)
and maybe a way to configure this in the FhirContext so that the parser
can take advantage?
2014-03-05 17:35:06 -05:00
* Add SimpleSetters for all primitive datatypes
2014-03-07 17:31:05 -05:00
2014-03-07 09:14:50 -05:00
* Implement and add Simple Getters in a similar way to simple setters
2014-03-07 17:31:05 -05:00
2014-03-07 16:23:49 -05:00
* Add support for modifierExtensions
2014-03-07 17:31:05 -05:00
* Add client and server support for other operations from
the list here (we currently support read, vread, and search
2014-03-07 17:35:24 -05:00
but there are many more): http://latest.fhir.me/http.html
* Get resource references working on both client and server - for the
client, maybe allow lazy-loading or something?
* Support compartments for client and server
* Support slices in the model