-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MSEARCH-844: Linked Data Hub index introduced instead of not used LD …
…Authority index
- Loading branch information
Showing
35 changed files
with
207 additions
and
264 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
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
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
23 changes: 0 additions & 23 deletions
23
...rg/folio/search/service/setter/linkeddata/authority/LinkedDataAuthorityLccnProcessor.java
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
{ | ||
"name": "linked-data-hub", | ||
"eventBodyJavaClass": "org.folio.search.domain.dto.LinkedDataHub", | ||
"reindexSupported": true, | ||
"fields": { | ||
"id": { | ||
"index": "keyword", | ||
"searchAliases": [ "keyword" ] | ||
}, | ||
"originalId": { | ||
"index": "keyword", | ||
"searchAliases": [ "keyword" ] | ||
}, | ||
"tenantId": { | ||
"index": "keyword_lowercase", | ||
"showInResponse": [ "search" ], | ||
"isTenant": true | ||
}, | ||
"hubAAP": { | ||
"searchAliases": [ "aap", "keyword" ], | ||
"index": "multilang" | ||
}, | ||
"title": { | ||
"searchAliases": [ "keyword" ], | ||
"index": "multilang" | ||
} | ||
}, | ||
"indexMappings": { } | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/resources/swagger.api/examples/result/linkedDataHubSearchResult.yaml
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,10 @@ | ||
value: | ||
searchQuery: "query string" | ||
content: | ||
- id: "1" | ||
originalId: "d292aac1-6f82-4828-93ae-c1b5cde1318a" | ||
hubAAP: "hub AAP" | ||
title: "hub title" | ||
pageNumber: 0 | ||
totalPages: 3 | ||
totalRecords: 27 |
12 changes: 0 additions & 12 deletions
12
src/main/resources/swagger.api/examples/result/linkedDataSearchAuthorityResult.yaml
This file was deleted.
Oops, something went wrong.
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: 0 additions & 21 deletions
21
src/main/resources/swagger.api/schemas/dto/linked-data/linkedDataAuthority.yaml
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
src/main/resources/swagger.api/schemas/dto/linked-data/linkedDataHub.yaml
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 @@ | ||
description: "Linked Data Hub search dto, contains Hub and Identifiers" | ||
type: "object" | ||
properties: | ||
id: | ||
description: "The Linked Data ID of an Hub" | ||
type: "string" | ||
originalId: | ||
description: "Original RDF ID of an Hub" | ||
type: "string" | ||
tenantId: | ||
description: "Tenant ID" | ||
type: "string" | ||
hubAAP: | ||
description: "Hub AAP" | ||
type: "string" | ||
title: | ||
description: "Hub Variant title" | ||
type: "string" | ||
required: | ||
- "id" |
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
6 changes: 3 additions & 3 deletions
6
...onse/linkedDataAuthoritySearchResult.yaml → ...s/response/linkedDataHubSearchResult.yaml
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.