-
Notifications
You must be signed in to change notification settings - Fork 49
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
GIC 3.0.0 merge #284
GIC 3.0.0 merge #284
Conversation
Fix name of parameter
Require status Return empty params if no result Fixed bug in gap detection
String canonicalBase = urlsplit[0]; | ||
|
||
String measureName = urlsplit[1]; | ||
IdType measureIdType = new IdType(); |
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.
Here you actually need to do a lookup based on Measure name in order to get the Id.
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.
Added a TODO as this is a WIP (to be worked on at the ConnectConnectathon).
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.
Talked with Rob out of band, going to work on this in the upcoming connectathon
@@ -587,7 +677,7 @@ else if (values.get(0) instanceof Reference | |||
@SuppressWarnings("unchecked") | |||
@Operation(name = "$submit-data", idempotent = true, type = Measure.class) | |||
public Resource submitData(RequestDetails details, @IdParam IdType theId, | |||
@OperationParam(name = "measurereport", min = 1, max = 1, type = MeasureReport.class) MeasureReport report, | |||
@OperationParam(name = "measureReport", min = 1, max = 1, type = MeasureReport.class) MeasureReport report, |
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.
Resolves #283
No description provided.