ca.gc.aafc.dina.vocabulary.VocabularyConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
package ca.gc.aafc.dina.vocabulary;
import java.util.List;
import java.util.Map;
public class VocabularyConfiguration {
private final Map> vocabulary;
public VocabularyConfiguration(Map> vocabulary) {
this.vocabulary = vocabulary;
}
public Map> getVocabulary() {
return vocabulary;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy