-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EA-4015 added serach user set client methods and classes
- Loading branch information
1 parent
c7137ae
commit 8c5decf
Showing
8 changed files
with
156 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
set-client/src/main/java/eu/europeana/set/client/web/SearchUserSetApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package eu.europeana.set.client.web; | ||
|
||
import org.springframework.http.ResponseEntity; | ||
|
||
public interface SearchUserSetApi { | ||
|
||
/** | ||
* This methods retrieves the search results from the db | ||
* @param query | ||
* @param qf | ||
* @param sort | ||
* @param page | ||
* @param pageSize | ||
* @param facet | ||
* @param facetLimit | ||
* @param profile | ||
* @return | ||
*/ | ||
public ResponseEntity<String> searchUserSet(String query, String[] qf, String sort, int page, int pageSize, | ||
String facet, int facetLimit, String profile); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.