-
Notifications
You must be signed in to change notification settings - Fork 159
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
issue #4023 - use FHIRPersistenceTransaction instead of ITransactionProvider #4024
Conversation
private static final Set<FHIRPathType> SYSTEM_TYPES = | ||
Set.of(SYSTEM_BOOLEAN, SYSTEM_STRING, SYSTEM_INTEGER, SYSTEM_DECIMAL, SYSTEM_DATE, SYSTEM_DATE_TIME, SYSTEM_QUANTITY, SYSTEM_TIME); | ||
private static final Set<FHIRPathType> METAMODEL_TYPES = | ||
Set.of(SYSTEM_TYPE_INFO, SYSTEM_CLASS_INFO, SYSTEM_TUPLE_TYPE_INFO, SYSTEM_LIST_TYPE_INFO, SYSTEM_SIMPLE_TYPE_INFO); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a random cleanup/update I was sitting on... now that we're on java 11 we can use Set.of() :-)
// path (with array indices) -> Extension instance (which never have a url version suffix) | ||
Map<String, Extension> pathToExtension = gatherInstanceExtensions(resourceNode); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
another minor formatting thing I had locally... the foreach on the next line references pathToExtension and so it made more sense for this to be the line which proceeds that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
bd20079
to
87c1b06
Compare
…rovider Signed-off-by: Lee Surprenant <lmsurpre@merative.com>
Signed-off-by: Lee Surprenant <lmsurpre@merative.com>
Signed-off-by: Lee Surprenant <lmsurpre@merative.com>
Signed-off-by: Lee Surprenant <lmsurpre@merative.com>
So that the callback for inserting search parameter values is invoked.
I'm expecting this to fail until #4021 is addressed... which actually means its working.
Signed-off-by: Lee Surprenant lmsurpre@merative.com