-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea2f214
commit eabab6d
Showing
10 changed files
with
107 additions
and
61 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/model/PathName.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,8 @@ | ||
package au.org.aodn.ardcvocabs.model; | ||
|
||
public enum PathName { | ||
categoryApi, | ||
categoryDetailsApi, | ||
vocabApi, | ||
vocabDetailsApi | ||
} |
5 changes: 4 additions & 1 deletion
5
ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/service/ArdcVocabService.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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
package au.org.aodn.ardcvocabs.service; | ||
|
||
import au.org.aodn.ardcvocabs.model.PathName; | ||
import au.org.aodn.ardcvocabs.model.VocabApiPaths; | ||
import au.org.aodn.ardcvocabs.model.VocabModel; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public interface ArdcVocabService { | ||
List<VocabModel> getVocabTreeFromArdcByType(VocabApiPaths vocabApiPaths); | ||
Map<String, Map<PathName, String>> getResolvedPathCollection(); | ||
List<VocabModel> getVocabTreeFromArdcByType(Map<PathName, String> resolvedPaths); | ||
} |
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
6 changes: 4 additions & 2 deletions
6
indexer/src/main/java/au/org/aodn/esindexer/service/VocabService.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
Oops, something went wrong.