-
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.
feat(cn-browse): Implement Indexing and Re-indexing Mechanisms for Ca…
…ll-Numbers Closes: MSEARCH-864
- Loading branch information
Showing
24 changed files
with
651 additions
and
54 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/main/java/org/folio/search/model/entity/InstanceCallNumberEntityAgg.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,17 @@ | ||
package org.folio.search.model.entity; | ||
|
||
import java.util.Set; | ||
import org.folio.search.model.index.InstanceSubResource; | ||
|
||
public record InstanceCallNumberEntityAgg( | ||
String id, | ||
String fullCallNumber, | ||
String callNumber, | ||
String callNumberPrefix, | ||
String callNumberSuffix, | ||
String callNumberTypeId, | ||
String volume, | ||
String enumeration, | ||
String chronology, | ||
String copyNumber, | ||
Set<InstanceSubResource> instances) { } |
16 changes: 16 additions & 0 deletions
16
src/main/java/org/folio/search/model/index/CallNumberResource.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,16 @@ | ||
package org.folio.search.model.index; | ||
|
||
import java.util.Set; | ||
|
||
public record CallNumberResource( | ||
String id, | ||
String fullCallNumber, | ||
String callNumber, | ||
String callNumberPrefix, | ||
String callNumberSuffix, | ||
String callNumberTypeId, | ||
String volume, | ||
String enumeration, | ||
String chronology, | ||
String copyNumber, | ||
Set<InstanceSubResource> instances) { } |
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
Oops, something went wrong.