package eu.dnetlib.dhp.schema.orcid; import java.io.Serializable; import eu.dnetlib.dhp.schema.orcid.AuthorData; /** * This class models the data related to a contributor, that are retrieved from an orcid publication */ public class Contributor extends AuthorData implements Serializable { private String sequence; private String role; private transient boolean simpleMatch; private transient Double score; private transient boolean bestMatch; public String getSequence() { return sequence; } public void setSequence(String sequence) { this.sequence = sequence; } public String getRole() { return role; } public void setRole(String role) { this.role = role; } public boolean isSimpleMatch() { return simpleMatch; } public void setSimpleMatch(boolean simpleMatch) { this.simpleMatch = simpleMatch; } public Double getScore() { return score; } public void setScore(Double score) { this.score = score; } public boolean isBestMatch() { return bestMatch; } public void setBestMatch(boolean bestMatch) { this.bestMatch = bestMatch; } }