Skip to content

Commit

Permalink
Implement setOperation for serialization purposes
Browse files Browse the repository at this point in the history
Otherwise, serializing the QueryRequest object using
JSONNode ends up creating a "variableOperation" property
instead of an "operation" property, causing an error
on the server side.
  • Loading branch information
Jeff Tulley committed Oct 26, 2016
1 parent ff88f2a commit ccde9db
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ public QueryVariableOperation getVariableOperation() {
}
return QueryVariableOperation.forFriendlyName(operation);
}


public String getOperation() {
return operation;
}

public void setOperation(String operation) {
this.operation = operation;
}
Expand Down

0 comments on commit ccde9db

Please sign in to comment.