Skip to content
Snippets Groups Projects
Commit e26f530e authored by Maël QUAISSARD's avatar Maël QUAISSARD Committed by Gaëlle FOURNIER
Browse files

19718/19716 - securisaton | probative value - Fix search query


Co-authored-by: default avatarbenemart <benedicte.martinez@cea.fr>
parent c5305202
No related branches found
No related tags found
No related merge requests found
......@@ -115,12 +115,16 @@ public class VitamQueryHelper {
case IDENTIFIER:
case ID:
case PUID:
case EV_TYPE_PROC:
// string equals operation
final String stringValue = (String) entry.getValue();
queryOr.add(eq(searchKey, stringValue));
haveOrParameters = true;
break;
case EV_TYPE_PROC:
// string equals operation
final String evTypeProc = (String) entry.getValue();
query.add(eq(searchKey, evTypeProc));
break;
case EV_TYPE:
// Special case EvType can be String or String[]
if (entry.getValue() instanceof String) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment