From ff97b2d450c7d3d088bbd5c0ce56d2ac9a06123c Mon Sep 17 00:00:00 2001 From: hjkhjk54 Date: Thu, 1 Dec 2011 19:47:30 +0000 Subject: [PATCH] vocab source class --- .../VocabSourceDescription.java | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/edu/cornell/mannlib/vitro/webapp/utils/ConceptSearchService/VocabSourceDescription.java diff --git a/src/edu/cornell/mannlib/vitro/webapp/utils/ConceptSearchService/VocabSourceDescription.java b/src/edu/cornell/mannlib/vitro/webapp/utils/ConceptSearchService/VocabSourceDescription.java new file mode 100644 index 00000000..dd2fbab0 --- /dev/null +++ b/src/edu/cornell/mannlib/vitro/webapp/utils/ConceptSearchService/VocabSourceDescription.java @@ -0,0 +1,33 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +package edu.cornell.mannlib.vitro.webapp.utils.ConceptSearchService; + +public class VocabSourceDescription { + private String url; + private String label; + private String schema; + private String description; + + public VocabSourceDescription(String inputLabel, String inputSchema, String inputUrl, String inputDescription) { + url = inputUrl; + label = inputLabel; + schema = inputSchema; + description = inputDescription; + } + + public String getUrl() { + return url; + } + + public String getLabel() { + return label; + } + + public String getSchema() { + return schema; + } + + public String getDescription() { + return description; + } +} \ No newline at end of file