-
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.
add items.meta profile to search items in set #EA-3954
- Loading branch information
Showing
7 changed files
with
460 additions
and
344 deletions.
There are no files selected for viewing
398 changes: 217 additions & 181 deletions
398
...g/src/integration-test/java/eu/europeana/api/set/integration/web/SearchUserSetRestIT.java
Large diffs are not rendered by default.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
set-web/src/main/java/eu/europeana/set/web/model/search/ItemDescriptionsResultPage.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,20 @@ | ||
package eu.europeana.set.web.model.search; | ||
|
||
import java.util.List; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonRawValue; | ||
import eu.europeana.set.definitions.model.vocabulary.WebUserSetFields; | ||
|
||
public class ItemDescriptionsResultPage extends BaseUserSetResultPage<String> { | ||
List<String> itemList; | ||
|
||
@JsonProperty(WebUserSetFields.ITEMS) | ||
@JsonRawValue | ||
public List<String> getItemList() { | ||
return itemList; | ||
} | ||
|
||
public void setItemList(List<String> itemList) { | ||
this.itemList = itemList; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,5 +2,4 @@ | |
|
||
public class ItemIdsResultPage extends BaseUserSetResultPage<String> { | ||
|
||
|
||
} |
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
Oops, something went wrong.