/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.pojo; public class DupicateResearcher { private String orcid; private String email; private String givenNames; private String familyNames; private String institution; public String getOrcid() { return orcid; } public void setOrcid(String orcid) { this.orcid = orcid; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getGivenNames() { return givenNames; } public void setGivenNames(String givenNames) { this.givenNames = givenNames; } public String getFamilyNames() { return familyNames; } public void setFamilyNames(String familynames) { this.familyNames = familynames; } public String getInstitution() { return institution; } public void setInstitution(String institution) { this.institution = institution; } }