package eu.dnetlib.dhp.oa.graph.hostedbymap.model.doaj; import java.io.Serializable; public class Institution implements Serializable { private String country; private String name; public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getName() { return name; } public void setName(String name) { this.name = name; } }