/** * ============================================================================= * * 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.jaxb.model.record_rc3; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import org.orcid.jaxb.model.common_rc3.CreatedDate; import org.orcid.jaxb.model.common_rc3.Filterable; import org.orcid.jaxb.model.common_rc3.LastModifiedDate; import org.orcid.jaxb.model.common_rc3.Source; import org.orcid.jaxb.model.common_rc3.Visibility; import com.fasterxml.jackson.annotation.JsonIgnore; import io.swagger.annotations.ApiModelProperty; /** * * @author Angel Montenegro * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "createdDate", "lastModifiedDate", "source", "email" }) @XmlRootElement(name = "email", namespace = "http://www.orcid.org/ns/email") public class Email implements Filterable, Serializable, SourceAware { private static final long serialVersionUID = 7986448691143979246L; @XmlElement(namespace = "http://www.orcid.org/ns/email") protected String email; @XmlElement(namespace = "http://www.orcid.org/ns/common") protected Source source; @XmlElement(namespace = "http://www.orcid.org/ns/common", name = "last-modified-date") protected LastModifiedDate lastModifiedDate; @XmlElement(namespace = "http://www.orcid.org/ns/common", name = "created-date") protected CreatedDate createdDate; @XmlAttribute(name = "put-code") @ApiModelProperty(hidden = true) protected Long putCode; @XmlAttribute protected String path; @XmlAttribute protected Visibility visibility; @XmlTransient @JsonIgnore protected Boolean verified; @XmlTransient @JsonIgnore protected Boolean current; @XmlTransient @JsonIgnore protected Boolean primary; public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public Source getSource() { return source; } public void setSource(Source source) { this.source = source; } public LastModifiedDate getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(LastModifiedDate lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } public CreatedDate getCreatedDate() { return createdDate; } public void setCreatedDate(CreatedDate createdDate) { this.createdDate = createdDate; } public Long getPutCode() { return putCode; } public void setPutCode(Long putCode) { this.putCode = putCode; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public Visibility getVisibility() { return visibility; } public void setVisibility(Visibility visibility) { this.visibility = visibility; } public Boolean isVerified() { return verified; } public void setVerified(boolean verified) { this.verified = verified; } public Boolean isCurrent() { return current; } public void setCurrent(boolean current) { this.current = current; } public Boolean isPrimary() { return primary; } public void setPrimary(boolean primary) { this.primary = primary; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((createdDate == null) ? 0 : createdDate.hashCode()); result = prime * result + ((email == null) ? 0 : email.hashCode()); result = prime * result + ((lastModifiedDate == null) ? 0 : lastModifiedDate.hashCode()); result = prime * result + ((path == null) ? 0 : path.hashCode()); result = prime * result + ((putCode == null) ? 0 : putCode.hashCode()); result = prime * result + ((source == null) ? 0 : source.hashCode()); result = prime * result + ((visibility == null) ? 0 : visibility.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Email other = (Email) obj; if (createdDate == null) { if (other.createdDate != null) return false; } else if (!createdDate.equals(other.createdDate)) return false; if (email == null) { if (other.email != null) return false; } else if (!email.equals(other.email)) return false; if (lastModifiedDate == null) { if (other.lastModifiedDate != null) return false; } else if (!lastModifiedDate.equals(other.lastModifiedDate)) return false; if (path == null) { if (other.path != null) return false; } else if (!path.equals(other.path)) return false; if (putCode == null) { if (other.putCode != null) return false; } else if (!putCode.equals(other.putCode)) return false; if (source == null) { if (other.source != null) return false; } else if (!source.equals(other.source)) return false; if (visibility != other.visibility) return false; return true; } @Override public String retrieveSourcePath() { if (source != null) { return source.retrieveSourcePath(); } return null; } }