-
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.
Merge pull request #273 from europeana/EA-3954_new_profiles_definitions
Ea 3954 new profiles definitions
- Loading branch information
Showing
7 changed files
with
496 additions
and
358 deletions.
There are no files selected for viewing
410 changes: 225 additions & 185 deletions
410
...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.