vocab source class
This commit is contained in:
parent
aff8500f20
commit
ff97b2d450
1 changed files with 33 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue