-
Notifications
You must be signed in to change notification settings - Fork 14
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
retrieve dynamic search for query request #1358
Conversation
@@ -62,6 +62,8 @@ public class QueryScreen extends Screen { | |||
|
|||
private boolean defaultSearch; | |||
|
|||
private boolean dynamicSearch; |
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.
How does this get set for QueryScreen
?
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.
resolved 8bfbc6f
@@ -102,7 +108,7 @@ public void readExternal(DataInputStream in, PrototypeFactory pf) | |||
description = (Text) ExtUtil.read(in, new ExtWrapNullable(Text.class), pf); | |||
useCaseTemplate = ExtUtil.readBool(in); | |||
defaultSearch = ExtUtil.readBool(in); | |||
|
|||
dynamicSearch = ExtUtil.readBool(in); |
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.
you need to add the corresponding write
in writeExternal
as well
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.
@@ -81,6 +83,10 @@ public boolean doDefaultSearch() { | |||
return defaultSearch; | |||
} | |||
|
|||
public boolean getDynamicSearch() { |
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.
nit: rename boolean getters in this PR to is{Var}
to signify it's a boolean
Product Description
Core element of this ticket: here
formplayer ticket here
HQ Part one here and Part 2 here
will update ref shortly
Technical Summary
see this ticket
Safety Assurance
Safety story
No logic change on formplayer, just sends back the variable if a QueryResponse
Automated test coverage
I will add test shortly
QA Plan
I am not requesting QA
Special deploy instructions
Rollback instructions
there is a formplayer PR as well linked above
Review
Duplicate PR
Automatically duplicate this PR as defined in contributing.md.