/** * ============================================================================= * * 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.frontend.web.forms; /** * * @author Will Simpson * */ public class SearchForDelegatesResult { private String orcid; private String creditName; private String primaryInstitutionName; private String email; private boolean selected; public String getOrcid() { return orcid; } public void setOrcid(String orcid) { this.orcid = orcid; } public String getCreditName() { return creditName; } public void setCreditName(String creditName) { this.creditName = creditName; } public String getPrimaryInstitutionName() { return primaryInstitutionName; } public void setPrimaryInstitutionName(String primaryInstitutionName) { this.primaryInstitutionName = primaryInstitutionName; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public boolean isSelected() { return selected; } public void setSelected(boolean selected) { this.selected = selected; } }