package eu.dnetlib.dhp.oa.graph.hostedbymap.model.doaj; import java.io.Serializable; public class Subject implements Serializable { private String code; private String scheme; private String term; public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getScheme() { return scheme; } public void setScheme(String scheme) { this.scheme = scheme; } public String getTerm() { return term; } public void setTerm(String term) { this.term = term; } }