Revision 49222
Added by Katerina Iatropoulou about 6 years ago
modules/uoa-search/trunk/src/main/java/eu/dnetlib/data/search/web/utils/RequestResponseHandler.java | ||
---|---|---|
20 | 20 |
|
21 | 21 |
private final List<String> PUBLICATION_FIELD_QUERIES = Arrays.asList("oaftype exact result", "resulttypeid exact publication"); |
22 | 22 |
private final List<String> DATASET_FIELD_QUERIES = Arrays.asList("oaftype exact result", "resulttypeid exact dataset"); |
23 |
private final List<String> SOFTWARE_FIELD_QUERIES = Arrays.asList("oaftype exact software"); |
|
23 |
private final List<String> SOFTWARE_FIELD_QUERIES = Arrays.asList("oaftype exact result", "resulttypeid exact software");
|
|
24 | 24 |
private final List<String> PROJECT_FIELD_QUERIES = Arrays.asList("oaftype exact project"); |
25 | 25 |
private final List<String> DATASOURCE_FIELD_QUERIES = Arrays.asList("oaftype exact datasource", "(datasourcecompatibilityid <> \"UNKNOWN\")"); |
26 | 26 |
private final List<String> ORGANIZATION_FIELD_QUERIES = Arrays.asList("oaftype exact organization", |
... | ... | |
139 | 139 |
|
140 | 140 |
public final static String PUBLICATION_PREFIX = "(oaftype exact result) and (resulttypeid exact publication)"; |
141 | 141 |
public final static String DATASET_PREFIX = "(oaftype exact result) and (resulttypeid exact dataset)"; |
142 |
public final static String SOFTWARE_PREFIX = "(oaftype exact software)"; |
|
142 |
public final static String SOFTWARE_PREFIX = "(oaftype exact result) and (resulttypeid exact software)";
|
|
143 | 143 |
public final static String PROJECT_PREFIX = "(oaftype exact project)"; |
144 | 144 |
public final static String DATASOURCE_PREFIX = "(oaftype exact datasource) and (datasourcecompatibilityid <> \"UNKNOWN\")"; |
145 | 145 |
public final static String ORGANIZATION_PREFIX = "(oaftype exact organization and " + |
Also available in: Unified diff
corrected software query