com.imsweb.seerapi.client.glossary.Glossary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
package com.imsweb.seerapi.client.glossary;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.imsweb.seerapi.client.publishable.Publishable;
public class Glossary extends Publishable {
@JsonProperty("history")
protected List _history;
/**
* Glossary-specific fields
*/
@JsonProperty("definition")
protected String _definition;
@JsonProperty("alternate_name")
protected List _alternateName;
@JsonProperty("abstractor_note")
protected String _abstractorNote;
@JsonProperty("histology")
protected List _histology;
@JsonProperty("primary_site")
protected List _primarySite;
@JsonProperty("category")
protected List _categories;
@JsonProperty("resource")
protected List _resources;
public List getHistory() {
return _history;
}
public void setHistory(List history) {
_history = history;
}
public String getDefinition() {
return _definition;
}
public void setDefinition(String definition) {
_definition = definition;
}
public List getAlternateName() {
return _alternateName;
}
public void setAlternateName(List alternateName) {
_alternateName = alternateName;
}
public String getAbstractorNote() {
return _abstractorNote;
}
public void setAbstractorNote(String abstractorNote) {
_abstractorNote = abstractorNote;
}
public List getHistology() {
return _histology;
}
public void setHistology(List histology) {
_histology = histology;
}
public List getPrimarySite() {
return _primarySite;
}
public void setPrimarySite(List primarySite) {
_primarySite = primarySite;
}
public List getCategories() {
return _categories;
}
public void setCategories(List categories) {
_categories = categories;
}
public List getResources() {
return _resources;
}
public void setResources(List resources) {
_resources = resources;
}
// values for the datasources
public enum Category {
GENERAL,
SOLID_TUMOR,
HEMATO,
SEERRX,
SEER_TRAINING,
LYMPH_NODES,
STAGING
}
}